Description
Followed this guide to setup oauth https://marketplace.zoom.us/docs/guides/auth/oauth.
I am using curl to when requesting for access_token getting {"reason":"Invalid client_id or client_secret","error":"invalid_client"} in all tries Error
{“reason”:“Invalid client_id or client_secret”,“error”:“invalid_client”}
Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth
Which Endpoint/s?
oauth/token
How To Reproduce (If applicable)
Steps to reproduce the behavior:
Once code is obtain after authorise in step 1 do curl request to curl -H "Authorization: Basic Base64Encoded(<ClientID>:<ClientSecret>)" -X POST "<token_url>?grant_type=authorization_code&code=<code_from_query_param>&redirect_uri=http://localhost"
got error {“reason”:“Invalid client_id or client_secret”,“error”:“invalid_client”}