本指南介绍了如何使用 Media
资源的 upload
方法
使用 Google Chat API 将媒体(文件)上传到 Google Chat,然后将其附加到
消息。
当用户向您的应用发送消息时,Google Chat 会发送一个
MESSAGE
互动事件。
您的应用接收的互动事件包括请求正文,即
表示互动事件的 JSON 载荷,包括所有附件。通过
取决于附件是否
已上传的内容(本地文件)或存储在云端硬盘中的文件。通过
Media
资源
表示上传到 Google Chat 的文件,例如图片、视频和文档。
通过
Attachment
资源
表示附加到消息的媒体(文件)实例。Attachment
资源包含有关连接的元数据,如
保存位置
前提条件
Python
- Business 或 Enterprise 有权访问以下内容的 Google Workspace 账号: Google Chat。
- 设置您的环境:
<ph type="x-smartling-placeholder">
- </ph>
- 创建 Google Cloud 项目。
- 配置 OAuth 权限请求页面。
- 启用并配置 Google Chat API,指定一个名称, 图标和说明。
- 安装 Python Google API 客户端库。
- <ph type="x-smartling-placeholder"></ph>
为桌面应用创建 OAuth 客户端 ID 凭据。为了运行此示例中的示例,
指南中,将凭据保存为
client_secrets.json
的 JSON 文件, 本地目录中。
- <ph type="x-smartling-placeholder"></ph> 选择支持用户身份验证的授权范围。
作为文件附件上传
要上传媒体并将其附加到消息,请在 请求:
- 指定
chat.messages.create
或chat.messages
授权范围。 - 调用以下 Google Chat 方法: <ph type="x-smartling-placeholder">
以下示例会上传一个 PNG 图片文件,并将其附加到邮件中。
Python
- 在您的工作目录中,创建一个名为
chat_media_and_attachment_upload.py
。 在
chat_media_and_attachment_upload.py
中添加以下代码:from google_auth_oauthlib.flow import InstalledAppFlow from googleapiclient.discovery import build from googleapiclient.http import MediaFileUpload # Define your app's authorization scopes. # When modifying these scopes, delete the file token.json, if it exists. SCOPES = ["https://www.googleapis.com/auth/chat.messages.create"] def main(): ''' Authenticates with Chat API via user credentials, then uploads a file as media, creates a message, and attaches the file to the message. ''' # Authenticate with Google Workspace # and get user authorization. flow = InstalledAppFlow.from_client_secrets_file( 'client_secrets.json', SCOPES) creds = flow.run_local_server() # Build a service endpoint for Chat API. service = build('chat', 'v1', credentials=creds) # Upload a file to Google Chat. media = MediaFileUpload('test_image.png', mimetype='image/png') # Create a message and attach the uploaded file to it. attachment_uploaded = service.media().upload( # The space to upload the attachment in. # # Replace SPACE with a space name. # Obtain the space name from the spaces resource of Chat API, # or from a space's URL. parent='spaces/SPACE', # The filename of the attachment, including the file extension. body={'filename': 'test_image.png'}, # Media resource of the attachment. media_body=media ).execute() print(attachment_uploaded) # Create a Chat message with attachment. result = service.spaces().messages().create( # The space to create the message in. # # Replace SPACE with a space name. # Obtain the space name from the spaces resource of Chat API, # or from a space's URL. # # Must match the space name that the attachment is uploaded to. parent='spaces/SPACE', # The message to create. body={ 'text': 'Hello, world!', 'attachment': [attachment_uploaded] } ).execute() print(result) if __name__ == '__main__': main()
在代码中,将
SPACE
替换为聊天室名称, 上传附件,您可以从spaces.list
方法 或通过聊天室网址发送。在您的工作目录中,构建并运行该示例:
python3 chat_media_and_attachment_upload.py
Chat API 返回一个响应正文,其中包含
将 attachmentDataRef
替换为上传文件的详细信息。
限制和注意事项
在准备上传文件并将其附加到邮件时,请注意以下事项 限制和注意事项:
- 您可以上传大小不超过 200 MB 的文件。
- 某些文件类型不受支持,因此无法上传。有关详情,请参阅 Google Chat 中屏蔽的文件类型。
- 您的消息必须省略 配件微件。