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



我想制作一个自动获取Zoom历史记录的程序。到目前为止,为了制作这个程序,我使用了zoomus,但我在获取API_KEY和API_SECRET时陷入了困境。有人知道从哪里买/做这个吗?

# 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读取访问凭据。基本上你有两个选择:

  1. 创建SDK/JWT应用程序,并提供该应用程序的凭据
  2. 使用您自己的凭据。您可以使用用户API获取用户令牌

最新更新