添付ファイルはメタデータでcontentUrl
提供されません。添付ファイルに関する詳細情報を取得するTimelineItem
には、承認されたリクエストをエンドポイントに送信する必要があります。mirror.timeline.attachments.get
from apiclient import errors
# ...
def print_attachment_metadata(service, item_id, attachment_id):
"""Print an attachment's metadata
Args:
service: Authorized Mirror service.
item_id: ID of the timeline item the attachment belongs to.
attachment_id: ID of the attachment to print metadata for.
"""
try:
attachment = service.timeline().attachments().get(
itemId=item_id, attachmentId=attachment_id).execute()
print 'Attachment content type: %s' % attachment['contentType']
print 'Attachment content URL: %s' % attachment['contentUrl']
except errors.HttpError, error:
print 'An error occurred: %s' % error
添付ファイルのメタデータを取得したら、isProcessingContent
プロパティを確認しますFalse
。. contentUrl
残念ながら、プロパティの値が変更されたときのプッシュ通知はなく、サービスはクォータとリソースを節約するために指数バックオフを使用してポーリングする必要があります。
添付ファイルのメタデータcontentUrl
が利用可能な場合、次のように添付ファイルのコンテンツを取得できます。
def download_attachment(service, attachment):
"""Download an attachment's content
Args:
service: Authorized Mirror service.
attachment: Attachment's metadata.
Returns:
Attachment's content if successful, None otherwise.
"""
resp, content = service._http.request(attachment['contentUrl'])
if resp.status == 200:
return content
else:
print 'An error occurred: %s' % resp
return None