Migrating from JWT to Server-to-Server OAuth - Token_type:bearer, expires_in: 3599

Redo the call to the /oauth/token endpoint with your account_credentials grant type to get a fresh access token.

If your application might have more than one concurrent usage of Zoom’s APIs, you probably want to implement a key rotation strategy because requesting a new access token will immediately revoke your current (previous) access token. Since you’re under time constraints, you’ll probably want to go with the multiple Server-to-Server OAuth applications implementation (instead of the token_index increase) since that requires no interaction with Developer Support.

1 Like