使用google-api-python-client通过Python访问Google Photo API

根据
Google API Client Libraries页面,可以使用python客户端库访问Google Photos API,但在使用pip install -t lib / google-api-python-client安装后,我没有看到任何与Photos API相关的内容.

如何使用Google构建的客户端库而不是手动调用REST API?

最佳答案 我没有找到任何示例,所以我采用了Drive API v3示例并将其改编为Photos v1 API.

You can see and use the example.

要点是:

from apiclient.discovery import build

service = build('photoslibrary', 'v1', http=creds.authorize(Http()))
results = service.albums().list(
    pageSize=10, fields="nextPageToken,albums(id,title)").execute()
点赞