2

I am using the Google Photo API, https://developers.google.com/photos/library/reference/rest I am using get successfully to get information about a media (a photo). However, I really really need to know WHICH albums the photo is in (it cam be multiple).

Is there any way to do this? Am I missing something?

Merc
  • 16,277
  • 18
  • 79
  • 122

1 Answers1

1

You can get all albums first and then get photos through https://developers.google.com/photos/library/reference/rest/v1/mediaItems/search by adding the parameter of albumId.

Tim Chen
  • 26
  • 1