Zoom API Security Update - Authorization Request

I understand that Zoom is removing the ability to set the access tokens, refresh tokens and revoke tokens in the URL query parameters.

I just wanted to confirm that we can still pass url parameters in the authorization request, and that building a request like this would still work after 2/14/23:

$data = [
‘response_type’ => ‘code’,
‘client_id’ => $client_id,
‘redirect_uri’ => $redirect_uri,
];

    return 'https://zoom.us/oauth/authorize?' . http_build_query($data);

Thank you in advance for your assistance!

Hi @matthew.beargie , yes this is okay!

1 Like

Thank you for the quick response, much appreciated!

1 Like