GET https://zoom.us/oauth/authorize?response_type=code&client_id={YOUR_CLIENT_ID}&redirect_uri={YOUR_REDIRECT_URI}
After going to that url, signing in with Zoom, and authorizing your app, you will be taken to {YOUR_REDIRECT_URI}, with a query param of code=abc123 in the url.
Then, grab the code in the url, in this example case abc123 and make the following request to get an access_token (used to call the Zoom APIs):
POST https://zoom.us/oauth/token?grant_type=authorization_code&code=abc123&redirect_uri={YOUR_REDIRECT_URI}
i selected all the given scope on marketplace but i am not able to create meeting using that access token. It is saying like. {
** “code”: 4700,**
** “message”: “Invalid access token, does not contain scopes: [meeting:write:admin]”** }