I'm developing an application, and one feature includes displaying the profile photo of a Google user given their account ID (in integer form). This was working great in the past, but after taking a break from development of the app, the same API call no longer seems to work.
Endpoint:
https://people.googleapis.com/v1/people/<USER ID HERE>?personFields=photos&key=<MY API KEY>
While this was previously returning a list of the user's photos, I am now only getting the response:
{
"resourceName": "people/<USER ID HERE>",
"etag": "<MASKED>"
}
I have not seen any notes about the API changing recently and so far have not found any alternative solutions.
I have verified that my API key is still valid and is authorized to use the People API in GCP console. Have tested the API call both from my application and manually via Postman with the same result.