Twitter第三方应用程序没有检索电子邮件

时间:2015-06-11 16:07:44

标签: email twitter passport.js loopbackjs

我正在使用环回和护照通过Twitter登录应用程序。问题是,当我登录时,我从我的Twitter个人资料数据中收到的电子邮件是这样的:

username@loopback.twitter.com
显然,这不是我的实际电子邮件地址。

我有什么东西与twitter应用程序隐藏电子邮件地址?我找不到任何关于此的文件。

1 个答案:

答案 0 :(得分:0)

如果您关联自己的帐户,我认为它会被解决。

实际上它是由code line

引起的
var email = profile.emails && profile.emails[0] && profile.emails[0].value;
if (!email) {
  // Fake an e-mail
  email = (profile.username || profile.id) + '@loopback.' +
          (profile.provider || provider) + '.com';
}

您可以从Login and account linking

获取更多信息