我有这样的 Twitter OAuth 策略:
consumerKey: process.env.CONSUMER_KEY,
consumerSecret: process.env.CONSUMER_SECRET,
userProfileURL: "https://api.twitter.com/1.1/account/verify_credentials.json?include_email=true",
requestTokenURL: 'https://api.twitter.com/oauth/request_token?x_auth_access_type=read',
callbackURL: '/dashboard/auth/callback',
proxy: true
现在,每当我包含 时requestTokenURL: 'https://api.twitter.com/oauth/request_token?x_auth_access_type=read'
,我都无法访问用户的电子邮件。如果我删除它,我可以通过userProfileURL: "https://api.twitter.com/1.1/account/verify_credentials.json?include_email=true"
.
我已在开发人员仪表板中启用请求电子邮件权限。我错过了什么?我正在为此使用护照推特库。