在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); }); }));
上一篇: Login website using linkedin with the help of passport.js