Google 照片 API : 自动备份照片
Google Photos API : Auto backup photos
Picasa API returns 一个名为 "Auto Backup" 的相册,其中包含与相册无关的所有媒体。
我无法使用新的 Google 照片 API 获取 "Auto Backup" 照片。我的范围设置为“https://www.googleapis.com/auth/photoslibrary.readonly". I have 25 albums in total and pageSize set to 50 when I make a call to the "https://photoslibrary.googleapis.com/v1/albums”端点。
还有其他方法吗,比如使用过滤器来获取与相册无关的所有媒体?
谢谢!!
您可以使用 mediaItems.list
调用来检索 Google 照片库中的 所有 媒体项目。
这包括与相册无关的所有照片和视频,但也包括属于相册的照片和视频。
根据 list library contents developer guide 描述此调用:
You can list all the media items from the user's Google Photos library. It excludes archived and deleted items.
(...)
If the user has not added an item available in the Sharing tab of their Google Photos to their library, that item is not included in this list.
不幸的是,目前没有调用只有 returns 个 没有 的媒体项目被添加到相册。
Picasa API returns 一个名为 "Auto Backup" 的相册,其中包含与相册无关的所有媒体。
我无法使用新的 Google 照片 API 获取 "Auto Backup" 照片。我的范围设置为“https://www.googleapis.com/auth/photoslibrary.readonly". I have 25 albums in total and pageSize set to 50 when I make a call to the "https://photoslibrary.googleapis.com/v1/albums”端点。
还有其他方法吗,比如使用过滤器来获取与相册无关的所有媒体?
谢谢!!
您可以使用 mediaItems.list
调用来检索 Google 照片库中的 所有 媒体项目。
这包括与相册无关的所有照片和视频,但也包括属于相册的照片和视频。
根据 list library contents developer guide 描述此调用:
You can list all the media items from the user's Google Photos library. It excludes archived and deleted items. (...) If the user has not added an item available in the Sharing tab of their Google Photos to their library, that item is not included in this list.
不幸的是,目前没有调用只有 returns 个 没有 的媒体项目被添加到相册。