Requesting Access Token via Python

Hey @nsoni, happy to help!

Yes, someone on your Zoom account that has the permission to install Account Level Apps will do Step 1.

Instructions here:

You have to do it via the UI.

For the Python script, just make an http POST request to:

https://zoom.us/oauth/token?code={{Code_from_Url}}&grant_type=authorization_code&redirect_uri={{Redirect_URL}}

with this Header:

{
   "Authorization": "Basic base64Encode(client_id:client_secret)"
}

Here is how to make an http request in python:

Thanks,
Tommy