Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI Companion2023-02-24 09:51 AM
Suddenly getting following error.
In Android Zoom SDK.
{"code":124,"message":"Invalid access token, this access token is not supported as query parameter string."}
The createJWTAccessToken method code was working fine to generate the token previously now the geenrated token is said to be Invalid By Zoom API call.
https://api.zoom.us/v2/users/%7BuserId%7D/token?
2023-02-25 05:17 PM
{"code":401,"message":"Invalid access token, this access token is not supported as query parameter string."}
We just started receiving this message as of (2-22-2023) as well. Regenerated our JWT access token and it is working for grabbing user info but still receive the message above when downloading phone recordings and transcripts.
https://zoom.us/v2/phone/recording/download/<url_no>?access_token=<JWT_token>
2023-02-27 08:58 AM
Hey all!
We were in the same boat. Our scheduled jobs started failing 2023-02-22. Error response from Zoom was "code":124,"message":"Invalid access token, this access token is not supported as query parameter string."
I found this resource from zoom devsupport:
Going forward, any API request to Zoom will need to be updated to include the access token value in the `Authorization` header.
The link includes an example of how to put the access token in the authorization header for Python. Our job was written in Pentaho but I was able to figure out how to pull the token out of our query parameter string (aka, the endpoint URL) and include it as a header field. I just ran our job this morning and it succeeded.
2023-04-12 07:42 AM
Did you resolve this issue? What solution did you implement ?
2023-03-03 06:24 AM
Thank you.
This was helpful. Resolved our issue.
Received a zoom email notification - The JWT app type will be deprecated June 1, 2023. After this date, you will no longer be able to use your JWT apps.
2023-06-17 06:10 AM
can you help me ..
I want to integrate zoom in my Laravel project and The JWT will be deprecated ..
now use Server-to-Server OAuth but valid token
2023-06-19 02:32 AM
Hi Ashrakt - The JWT access token is still valid, but it must be sent as part of the Authorization Request header. In Python, that looks like this:
I'm not familiar with Laravel, but this blog post looks useful. As long as your API request includes the token in the `Authorization` header, it should work with the recent changes.