Description
why when requesting a token it gives a clientid error
Error
Invalid client_id: (4,702)
Which App Type (OAuth / Chatbot / JWT / Webhook)?
oauth
Which Endpoint/s?
https://zoom.weblet.me/fregazoom/app/oauth/?code=
How To Reproduce (If applicable)
Steps to reproduce the behavior:
var client = new RestClient(“https://zoom.us/oauth/token?grant_type=authorization_code&code=7XxSIL5bs4_ZNacrN1zSaaAWJZ8EZ_4IA
&redirect_uri=https://zoom.us”);
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader(“Authorization”, “Basic ['creds]”);
request.AddHeader(“Cookie”, “_zm_currency=USD”);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.