且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何从Google Plus OAuth获取用户电子邮件

更新时间:2023-12-04 12:39:22

将范围设置为:

  • https://www.googleapis.com/auth/userinfo.email and
  • https://www.googleapis.com/auth/userinfo.profile

并使用端点:

https://www.googleapis.com/oauth2/v1/userinfo? alt = json

用法:

get https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=youraccess_token

您将获得JSON:

{ "id": "xx", 
  "name": "xx", 
  "given_name": "xx", 
  "family_name": "xx", 
  "link": "xx", 
  "picture": "xx", 
  "gender": "xx", 
  "locale": "xx" 
}