如何拥有显示我的历史记录的 Zoom API

How to have a Zoom API that shows my history

我想制作一个自动获取我的 Zoom 历史记录的程序。到目前为止,为了制作这个程序,我使用了 zoomus,但我在获取 API_KEY 和 API_SECRET 时卡住了。有谁知道从哪里 get/make 这个?

# Documentation Sample Code

import json
from zoomus import ZoomClient

client = ZoomClient('API_KEY', 'API_SECRET') # This is where I am stuck

user_list_response = client.user.list()
user_list = json.loads(user_list_response.content)

for user in user_list['users']:
    user_id = user['id']
    print(json.loads(client.meeting.list(user_id=user_id).content))

您需要通过 Zoom 阅读 Access Credentials。基本上你有两个选择:

  1. 创建 SDK/JWT 应用程序,并提供应用程序的凭据。
  2. 使用您自己的凭据。您可以获取 User Tokens using the Users API