auth0 / passport-linkedin-oauth2

Passport Strategy for LinkedIn OAuth 2.0
MIT License
119 stars 107 forks source link

Does this still work and are there any alternatives? #85

Open Aditya94A opened 4 years ago

Aditya94A commented 4 years ago

I'm seeing tons of open issues, some three or more years old. Does this still work?

kopax commented 3 years ago

same question here.

dandevmsc commented 3 years ago

This does still work, when authenticating rather than "some state" I added the scope.

  router.get('/auth/linkedin',
      passport.authenticate('linkedin', { scope: ['r_emailaddress', 'r_liteprofile'],}),
      function(req, res){
  });