获取用户的电子邮件地址

获取用户的电子邮件地址

本文介绍了是否可以通过Google的OAuth2实现“仅"获取用户的电子邮件地址?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的页面上有一个使用Google+登录"按钮.当人们点击它时,我希望他们授权的 only 只是查看您的电子邮件地址".

I have a "Sign in with Google+" button on my page. When people click on it, I want the only thing they authorize to be "View your email address."

想要知道您在Google上的身份"或查看有关您帐户的基本信息".我只想要他们的电子邮件地址.

I don't want "Know who you are on Google" or "View basic information about your account." I only want their email address.

我正在OAuth 2.0游乐场( https://developers.google.com/oauthplayground/)和看到这个:

I'm playing on the OAuth 2.0 Playground (https://developers.google.com/oauthplayground/) and see this:

范围:email

请求:

  1. 了解您在Google上的身份
  2. 查看您的电子邮件地址


作用域:https://www.googleapis.com/auth/userinfo.email(不推荐使用)


Scope: https://www.googleapis.com/auth/userinfo.email (and this one is deprecated)

请求:

  1. 了解您在Google上的身份
  2. 查看您的电子邮件地址

推荐答案

确实,我也注意到了这一点.我发现 2013年2月以来的解释:

Indeed, I've noticed that too. And I found an explanation from February 2013 here:

这篇关于是否可以通过Google的OAuth2实现“仅"获取用户的电子邮件地址?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-20 17:06