Description
I’m trying to install a sample app for local dev work. My client-Id generated is -cuD2Rtm0Rb6fHbRlp3WVA. On the final step, when I try to install, I get redirected to my redirect URI - http://localhost:7010/sg50/v2/zoom/zoomToken, but on trying to hit the access token call, it gives a redirect URI mismatch error.
Thanks for the guidance here. Along with removing the extra query param for code, I had to channel localhost via a tunneling proxy as well. This helped me in generating access token. Another question I had was, the scopes to access any API have and AND between them or an OR. For e.g., I wanted to get meeting details by meeting Id. For which I used the following curl:
{
"code": 4700,
"message": "Invalid access token, does not contain scopes: [zms:meeting:read, meeting:read:admin, zms:meeting:write, meeting:write:admin]"
}
My access token has the following scope:
{
“scope”: “meeting:read meeting:write recording:read recording:write user:read user:write user_profile webinar:read webinar:write”
}