Open elimence opened 9 years ago
Also having this issue, any luck?
No luck, but recheck your key's, I've had trouble with those in other cases.
Try running npm update and bower update
After running both of those, I got it working again
Ok, will give that a shot, and thanks :)
Hi I am getting same error. Please help me to resolve this.
TIA. Gaurav
Did you try running npm update and bower update?
yes .. I tried everything... Now I am using "passport-linkedin-oauth2" NPM. Its working smoothly for me.
Thank you for your quick reply.
Hey guys ! I am using Mean IO where they followed OAuth 1. x strategy for LinkedIn....Could you help to overcome this issue
@elimence It seems that you used OAuth2, this package is a strategy for authenticating with LinkedIn using the OAuth 1.0a API. Try using https://github.com/auth0/passport-linkedin-oauth2 instead, it should work.
Dame same issue.
same issue here! any solution?
Initially I had very same issue and my problem was the scope.I was asking for non-existing scope r_fullprofile that is not available any more, and funny enough this was failing only occasionally not all the time, there must be some inconsistency at LinkedIn side.
Try to limit you scope just to a single known value.
I had this issue and had to use
https://github.com/jaredhanson/passport-google-oauth2
rather than the basic google auth in the docs to make it work. It looks like the original uses an outdated URL.
Well I was getting the same error but then i used
var GoogleStrategy = require('passport-google-oauth').OAuth2Strategy;
instead of .OAuthStrategy ... It worked for me
Well I was getting the same error but then i used var GoogleStrategy = require('passport-google-oauth').OAuth2Strategy; instead of .OAuthStrategy ... It worked for me
this worked for me as well
I am looking to use passport-linkedin in my application. I have successfully implemented same for twitter, facebook and instagram. However with linkedin, I get getting the following error
Here's what my code looks like
and here's the routing setup
Also, I have setup the appropriate endpoints on linkedin as follows;
Authorized Redirect URLs:
Default "Accept" Redirect URL:
I tried each of the above but always had the same error. I don't know what to do next, I'd really appreciate any help. Thanks :)