Failed to get an access token

Using this template helps us debug your issues more effectively :slight_smile:

Description
Hello everyone, we are trying to create a conference from a web page that we are developing, when trying to obtain the access token, we have problems since it is not possible to obtain it through the api specified for that, and not through the tool that is shown in the documentation of each api.

Error
Invalid redirect: https://marketplace.zoom.us/docs/oauth/callback/success (4,700)

Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth

Which Endpoint/s?
/oauth/token

How To Reproduce (If applicable)
Steps to reproduce the behavior:

  1. Request URL / Headers (without credentials) / Body
  2. See error

Screenshots (If applicable)
Api.
image

Additional context
Add any other context about the problem here.

Hi @ricardo.cadena1991,

It should be possible to retrieve an access_token via API.

After you’ve installed the OAuth App locally, it will take you to your redirect URL and a code parameter will be appended in the browser URL (this is a manual step).

Once you have that code, you need to send a request to our OAuth endpoint following this format:
https://zoom.us/oauth/token?grant_type=authorization_code&code={code}&redirect_uri={redirectUri}

Can you ensure you’re following the steps outlined here? Please also double check you’re passing the grant_type parameter above.

Thanks!
Will

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.