Hi there. I’m building a scenario that gets a call recording url from a zoom phone call and then I’d like to download that recording for qa review purposes.
I’m able to get the URL for the recording but to download I need an oauth authorization token. Here is the info from their docs:
The URL to download the recording. For security purposes, you must provide an OAuth access token in the Authorization header to download the recording file using this URL. Example:
--url {download_url} \
--header 'authorization: Bearer {access_token} \
--header 'content-type: application/json'
I am able to use the zoom modules which include an oauth connection but in this case I need to download a URL and include an access token. How do I do that?