Response Status:
“status”: false,
“errorCode”: -1,
“errorMessage”: “500 Internal Server Error”
I would appreciate it if you could provide guidance on resolving this issue.
Replace YOUR_CLIENT_ID and YOUR_REDIRECT_URI with your actual client ID and redirect URI.
Obtain an Authorization Code
Once a user authorizes your app, they will be redirected to your redirect URI with a code parameter in the URL. This is the authorization code.
Example URL: https://yourredirecturi.com?code=AUTHORIZATION_CODE
Request an Access Token
Make a POST request to Zoom’s OAuth token URL:
The URL is https://zoom.us/oauth/token
Include the following parameters:
grant_type=authorization_code
code=AUTHORIZATION_CODE (the code you received)
redirect_uri=YOUR_REDIRECT_URI
Authenticate this request with your Client ID and Client Secret. This is usually done using Basic HTTP authentication with the Client ID as the username and Client Secret as the password.
Receive the Access Token
Zoom will respond with a JSON object containing your access token and refresh token.
There was a point I did not explain well enough.
It was working fine until 1 or 2 months ago.
The current situation is that we did not make any changes to the program, but when we ran the check in December, it resulted in an error.
I also checked again, and the program was built according to the specifications you gave us.
(*The information I provided looks like a GET, but it is being sent as a POST.)
The app and the user still exists and either havent been deactivated? Also can you confirm if the user building the app did not migrate between accounts?
You are using the correct app type (i.e. User authorized OAuth)
Can you create another app and check if it is able to generate an access token?
1.The app and the user still exists and either havent been deactivated? Also can you confirm if the user building the app did not migrate between accounts?
⇒Both the app and the user used it
2.You are using the correct app type (i.e. User authorized OAuth)
⇒Sorry, I couldn’t understand
Could you please tell me the details?
3.Can you create another app and check if it is able to generate an access token?
⇒I will check
Is it possible to investigate from the log?
Have the specifications changed in the last few months?