Background:
We have a azure function that act as endpoint for incoming event (transcription_completed) from Zoom. From there, we are going to download the transcription using the download_url and download_token.
Issue
Every time the Azure Function tries to download the transcriptions its response is always Forbidden. This was working before (few weeks ago I guess). Additionally, when I tried to paste the URL (https://<download_url>?access_token=<access_token>) on the browser it downloads the file even on the postman it’s properly working. It also working when I tried to run the Azure Function locally.
I already tried to parse the download_token to the download_url (https://<download_url>?access_token=<access_token>) which is before, I’m passing the token in the header “Bearer <download_token>”
Any idea on how to solve this issue?