8

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

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

4

4 回答 4

8

感谢Ido Ranbrillb的示例,我终于也解决了我的问题。上面给出的一些文档链接不再有效。为了增强上述示例,我发现Google Photos APIs页面最有用。它不仅记录了 API,还允许您以交互方式测试您的请求——如果没有这种测试能力,我可能永远不会让它工作。输入您的请求后,您可以在 cURL、HTTP 或 JAVASCRIPT 中看到您的编码示例 - 但对于 Python 则没有。

除了制作我的专辑列表之外,我还对

  • 每张专辑的链接,
  • 图像列表(在相册中或不在相册中),
  • 链接到我的每个媒体项目和 URL 以找到它们

为了获得专辑的链接,您可以简单地通过检索来扩展上述示例item['productUrl']。然而,很多时候该 URL 在 Firefox、IE 和 Edge 中对我不起作用(非常简短地显示专辑后出现错误 404),但在 Chrome 和 Opera 中却可以(谁知道为什么)。

专辑封面照片的 URL 似乎更可靠:item['coverPhotoMediaItemId']您会在Info下找到指向专辑的链接。

除了使用该albums方法,您还可以访问sharedAlbums(并指定results.get('sharedAlbums', [])。我希望能够获得shareableUrl,但从未找到ShareInfo资源作为结果的一部分。

对于图像列表,您可以选择两种方法:mediaItems.listmediaItems.search. 我不认为前者有用,因为它返回所有图像的长列表,而搜索允许按日期限制结果,照片拍摄(未上传!)。还有一个getand batchGet,我从未尝试过,因为您需要知道 Google 照片为图像提供的项目 ID。

pageSize对于要返回的最大条目,每个方法都有一个限制 ( )。如果还有更多,它还会发送一个pageToken,您可以使用它来请求下一部分。

我终于想出了这个例子:

from os.path import join, dirname
from googleapiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
SCOPES = 'https://www.googleapis.com/auth/photoslibrary.readonly'

store = file.Storage(join(dirname(__file__), 'token-for-google.json'))
creds = store.get()
if not creds or creds.invalid:
    flow = client.flow_from_clientsecrets(join(dirname(__file__), 'client_id.json', SCOPES))
    creds = tools.run_flow(flow, store)
google_photos = build('photoslibrary', 'v1', http=creds.authorize(Http()))

day, month, year = ('0', '6', '2019')  # Day or month may be 0 => full month resp. year
date_filter = [{"day": day, "month": month, "year": year}]  # No leading zeroes for day an month!
nextpagetoken = 'Dummy'
while nextpagetoken != '':
    nextpagetoken = '' if nextpagetoken == 'Dummy' else nextpagetoken
    results = google_photos.mediaItems().search(
            body={"filters":  {"dateFilter": {"dates": [{"day": day, "month": month, "year": year}]}},
                  "pageSize": 10, "pageToken": nextpagetoken}).execute()
    # The default number of media items to return at a time is 25. The maximum pageSize is 100.
    items = results.get('mediaItems', [])
    nextpagetoken = results.get('nextPageToken', '')
    for item in items:
            print(f"{item['filename']} {item['mimeType']} '{item.get('description', '- -')}'"
                      f" {item['mediaMetadata']['creationTime']}\nURL: {item['productUrl']}")
于 2019-06-15T15:57:17.423 回答
7

我没有找到任何示例,因此我采用了 Drive API v3 示例并将其改编为 Photos v1 API。

您可以查看并使用该示例

要点是:

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()
于 2018-05-29T05:53:42.700 回答
6

该 API 的功能比上面的示例中显示的稍差,它不支持“字段”。但它确实有效:

from googleapiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
SCOPES = 'https://www.googleapis.com/auth/photoslibrary.readonly'

store = file.Storage('token-for-google.json')
creds = store.get()
if not creds or creds.invalid:
    flow = client.flow_from_clientsecrets('client_id.json', SCOPES)
    creds = tools.run_flow(flow, store)
gdriveservice = build('photoslibrary', 'v1', http=creds.authorize(Http()))

results = gdriveservice.albums().list(
    pageSize=10).execute()
items = results.get('albums', [])
for item in items:
        print(u'{0} ({1})'.format(item['title'].encode('utf8'), item['id']))
于 2019-01-02T01:48:36.927 回答
-1

在此处查看 API 的文档。

更具体地说,这里。不过似乎很有限。

于 2018-05-28T20:43:33.900 回答