在passport.js的帮助下使用linkedin登录网站

我试图登录我的网站使用linkedin与passport.js的帮助,但linkedin api登录后没有返回任何东西,因为我有控制台显示proifle,但它会在这一节。 请建议。

  • 它从这里触发
  • passport.authenticate('linkedin',{scope:['r_basicprofile','r_emailaddress']})(req,res);

  • 触发代码在本节中移动后
  • var LinkedInStrategy = require('passport-linkedin-oauth2')。 passport.use(新LinkedInStrategy({ clientID:'asddasas', clientSecret:'fdasasdasdas', callbackURL:'http:// localhost:1337 / linkedin-callback', 范围:['r_basicprofile','r_emailaddress']}, 函数(req,token,refreshToken,profile,done){ process.nextTick(function(){ console.log(“profile ====>”,profile); 返回完成(null,profile); }); }));

    链接地址: http://www.djcxy.com/p/83215.html

    上一篇: Login website using linkedin with the help of passport.js

    下一篇: Google Oauth implementation using MEAN stack