Hello Ojus,
sorry for the delay in reply, could not reply to earlier post was getting error.
thank you Ojus.
tried the documentation
POST https://zoom.us/oauth/token
{
“grant_type”:“authorization_code”,
“code”:“XXXXXXXXXXXXXXXXXX”,
“redirect_uri”:“https://myredirectURI”
}
added Header information
String authHeader = System.Convert.ToBase64String(System.Text.ASCIIEncoding.ASCII.GetBytes(clientId + “:” + clientSecret));
request.Headers.Add(“Authorization”, “Basic” + authHeader);
i get error Bad Request as response.
also the app i created in my zoom, will the authorization code work if app not published?
if so where do you set the app icon for the app, added image still publish button not enabled.
what am i missing ? please advise, thank you.