Retrieving date of birth with Google OAuth API

后端 未结 2 735
你的背包
你的背包 2021-01-12 02:11

Does any one know how to retrive D.O.B through Google OAuth api? I am able to get other information like name, email, gender by setting the scope as https://www.googleapis.c

2条回答
  •  [愿得一人]
    2021-01-12 02:51

    I definitely get it for my account:

    {
      "id": "108635752367054807758",
      "name": "Nicolas Garnier",
      "given_name": "Nicolas",
      "family_name": "Garnier",
      "link": "https://plus.google.com/108635752367054807758",
      "picture": "https://lh4.googleusercontent.com/-K1xGP8W20xk/AAAAAAAAAAI/AAAAAAAABhY/Cs_4qr30MxI/photo.jpg",
      "gender": "male",
      "birthday": "0000-08-25",
      "locale": "en"
    }
    

    all I did is authorize for the https://www.googleapis.com/auth/userinfo.profile scope and then sent a GET request to https://www.googleapis.com/oauth2/v2/userinfo

    First make sure that the Google+ account that you are testing with has set a Birthday (of course), then try the request on the OAuth 2.0 Playground for instance: https://code.google.com/oauthplayground/#step1&apisSelect=https%3A//www.googleapis.com/auth/userinfo.profile&url=https%3A//www.googleapis.com/oauth2/v2/userinfo

提交回复
热议问题