Description
I am having the 500 Internal Server Error when I launch the App Authorisation using OAUTH2 app in order to get access token. My email and password are correct(can be signed in at Zoom), and it is the same email as the developer email field in Zoom OAUTH2 app. Th redirect uri are the same too.
How To Reproduce (If applicable)
Steps to reproduce the behavior:
var url ='https://zoom.us/oauth/authorize?response_type=code&client_id=0C4XBizXRNaLaoAs1BENw&redirect_uri=$zmEncodedWSurl';
final callbackUrlScheme = 'foobar';
final result = await FlutterWebAuth.authenticate(
url: url, callbackUrlScheme: callbackUrlScheme);
Am new to using Zoom APIs and first blocker is in OAuth itself. I’m using Postman to try the APIs and in token generation process get 500 internal server error. I am already logged into Zoom using both Chrome and Safari, not sure how to implement above recommended workaround in Postman. Will appreciate help.
I encountered a similar issue of 500 error when I tried to authorize Slack-Zoom integration on Slack. The steps are below:
Type /zoom on a random slack channel.
Click “Authorize Zoom” link and open a Zoom sing-in page on Google Chrome.
Click “Sign-in with SSO” and type our domain name. (Using Okta as a IDaaS)
Open a slack.com page which requires authentication. It says “Zoom is requesting permission to access the NESIC社内 Slack workspace.” (“NESIC社内” is the name of our workspace.)
I checked the install status of the integration at App Marketplace, and found it had successfully installed (subscribed) into my zoom account.
I found some colleagues in our company encountered the same authorization issue above. I wonder if someone could tell me the additional information to solve the issue.