I’m building an integration with Zoom’s OAuth API to access user data, but I keep getting an “Invalid Access Token” error on my requests. I’m following the OAuth 2.0 process as documented, and the token seems valid in terms of structure and expiration time.
Here’s what I’ve tried so far:
Double-checked that I’m using the correct client ID and client secret.
Confirmed that the access token is received successfully and is included in the request header as Authorization: Bearer {access_token}.
Verified that the token hasn’t expired before making requests.
Ensured that the necessary scopes (like user:read and meeting:read) are granted.
Despite all this, each API call returns a 401 error with “Invalid Access Token.” Has anyone experienced a similar issue or have any advice on troubleshooting this?
After retrieving the access token, I include it in the request header as shown. I also verified the scopes and checked that the token hasn’t expired. Despite these, I still encounter the “Invalid Access Token” error.
Any insights or further recommendations would be greatly appreciated!