In
The response differs based on the given scope on the first login step. Mine was set to the below:
#google #login_with_google #oauth #scope #userinfo #oauth2
Google OAUTH 2.0
in case you get a token from Google Login
you can get user's information for that token by sending a simple GET
request to the following URL:https://www.googleapis.com/oauth2/v1/userinfo?alt=json&access_token=YOUR_GOOGLE_TOKEN
The response differs based on the given scope on the first login step. Mine was set to the below:
https://www.googleapis.com/auth/plus.me https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email
#google #login_with_google #oauth #scope #userinfo #oauth2