0

这已被问过很多次,但似乎没有已知的解决方法,所以我发布这个问题是希望有人确实有解决方法。

我正在使用 NodeJS、PassportJS-Facebook。

app.get("/auth/facebook",
            passport.authenticate("facebook", {
                scope : [ "email" ]
            }),
            function (req, res) {
            });

起初我认为这是一个 PassportJS 问题,但我当然取消了这个选项。
我使用的 Facebook 用户帐户明确指出:

This app needs: 
Your basic info
Your email address (xyz@example.com)

此已知问题的一些链接(尚未解决!): https ://developers.facebook.com/bugs/298946933534016 https://developers.facebook.com/bugs/429653750464521 https://developers.facebook.com/bugs/ 482815835078469

那么,你使用 Facebook 的 OAuth 服务吗?如果是这样,您是否收到用户的电子邮件?如何?“直”的方式?变通办法?

4

2 回答 2

6

passportjs 中的 Facebook 策略,期望profileFields在选项中有一个字段。尝试在选项中传递“电子邮件”。

strategyOptions.profileFields = ['emails', 'first_name', 'last_name'];

或者,您可以覆盖profileUrloptions发送:

strategyOptions.profileURL = 'https://graph.facebook.com/me?fields=location,first_name,last_name,middle_name,name,link,username,work,education,gender,timezone,locale,verified,picture,about,address,age_range,bio,birthday,cover,currency,devices,email,favorite_athletes,id,hometown,favorite_teams,inspirational_people,install_type,installed,interested_in,languages,meeting_for,name_format,political,quotes,relationship_status,religion,significant_other,sports,updated_time,website';

Facebook 将忽略您无权访问的字段(例如电子邮件)。

这应该在这里:

passport.use(new FacebookStrategy({
    clientID: FACEBOOK_APP_ID,
    clientSecret: FACEBOOK_APP_SECRET,
    callbackURL: "http://localhost:3000/auth/facebook/callback",
    profileUrl: "  ..... ",
    //or
    profileFields: [ ... ];
  },
  function(accessToken, refreshToken, profile, done) {
    // asynchronous verification, for effect...
    process.nextTick(function () {

      // To keep the example simple, the user's Facebook profile is returned to
      // represent the logged-in user.  In a typical application, you would want
      // to associate the Facebook account with a user record in your database,
      // and return that user instead.
      return done(null, profile);
    });
  }
));

```

于 2013-09-29T00:46:52.693 回答
0

您必须在设置对象中提供字段“范围”:

new FacebookStrategy({
    clientID: FACEBOOK_APP_ID,
    clientSecret: FACEBOOK_APP_SECRET,
    callbackURL: "http://localhost:3000/auth/facebook/callback",
    profileUrl: "  ..... ",
    scope: "email",
    //or
    profileFields: [ ... ];
  }

尝试寻找来源。

于 2015-07-18T18:33:19.567 回答