使用 OAuth 访问令牌提取 Gmail 用户名

发布于 2024-11-03 14:39:21 字数 92 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长发绾君心 2024-11-10 14:39:21

您可以使用 Google 的 OAuth Playground 测试此 Feed,就像我刚才所做的那样。

在第一步中,粘贴范围:

https://www.googleapis.com/auth/userinfo#email

在第六步中,粘贴提要 URI:

https://www.googleapis.com/userinfo/email

这应该有助于调整提要以在您自己的应用程序中使用。

And you can test this feed using Google's OAuth Playground, as I just did.

In step one, paste the scope:

https://www.googleapis.com/auth/userinfo#email

And in step six, paste the feed URI:

https://www.googleapis.com/userinfo/email

This should help in adapting the feed for use in your own application.

老子叫无熙 2024-11-10 14:39:21

您可以使用端点获取用户的用户名和电子邮件: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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文