MaxM
(Max M.)
May 22, 2021, 1:27am
3
Hey @dbailey ,
Thank you for reaching out to the Zoom Developer Forum. It looks like this meeting UUID was only encoded once. The double encoded version should be: 4%252F%252FM4niJTOCN0Sx%252FyjwA6w%253D%253D
Trying to get the recordings of a meeting, using the /meetings/{meetingId}/recordings API.
All works fine usually. Today we got a meeting with a UUID of /nk84I4+SbONSeE5ScfjUQ==. The request failed because I wasn’t URL-encoding that value:
GET https://api.zoom.us/v2/meetings//nk84I4+SbONSeE5ScfjUQ==/recordings --> 500
So I figured that was the problem. But when I URL-encode it, I got a 404 on the call:
GET https://api.zoom.us/v2/meetings/%2Fnk84I4%2BSbONSeE5ScfjUQ%3D%3D/recordings --> 404
I…
Let me know if you have any questions.
Thanks,
Max