For the past couple months I have been using this url to retrieve a user's name and info after logging in with OAuth.
https://www.googleapis.com/oauth2/v1/userinfo?alt=json
This gave me JSON in the following format:
{
"id": "12345",
"email": "name@gmail.com",
"verified_email": true,
"name": "First Last",
"given_name": "First",
"family_name": "Last",
"link": "https://plus.google.com/12345",
"picture": "https://lh3.googleusercontent.com/123photo.jpg",
"locale": "en"
}
This morning, when my app hit this endpoint, it got JSON in the following format:
{
"id": "12345",
"email": "name@gmail.com",
"verified_email": true,
"picture": "https://lh3.googleusercontent.com/123/photo.jpg"
}
I have not made any changes to the configuration in the developer console. Does anyone know what the cause of this problem could be?