使用 OAuth 访问令牌提取 Gmail 用户名
我正在使用 OAuth 让用户授予我访问其 Gmail IMAP 帐户的权限。我可以成功获取访问令牌,并且需要知道可以访问哪个端点来获取经过身份验证的用户的电子邮件地址。
I'm using OAuth to get a user to grant me access to their Gmail IMAP account. I can successfully get an access token, and need to know what endpoint I can access to get the authenticated user's e-mail address.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Google 的 OAuth Playground 测试此 Feed,就像我刚才所做的那样。
在第一步中,粘贴范围:
在第六步中,粘贴提要 URI:
这应该有助于调整提要以在您自己的应用程序中使用。
And you can test this feed using Google's OAuth Playground, as I just did.
In step one, paste the scope:
And in step six, paste the feed URI:
This should help in adapting the feed for use in your own application.
您可以使用端点获取用户的用户名和电子邮件:https://www.googleapis.com/userinfo/email 范围:https://www.googleapis.com/auth/userinfo#email。
You can get user's username and email with endpoint: https://www.googleapis.com/userinfo/email with scope: https://www.googleapis.com/auth/userinfo#email.