API Endpoint(s) and/or Zoom API Event(s)
“https://api.zoom.us/v2/users/me/meetings”
Description
I have an OAuth app which is configured with the necessary scopes to work well, however when I use the endpoints to create functions the output tells me that scopes are missing (which is incorrect) and I even get some scopes that do not exist for my application.
Error?
Unable to generate meeting link: {‘code’: 4711, ‘message’: ‘Invalid access token, does not contain scopes:[meeting:write, meeting:write:admin].’}
How To Reproduce
1. Request URL / Headers (without credentials or sensitive info like emails, uuid, etc.) / Body
headers = {
‘Authorization’: f’Bearer {self.access_token}',
‘Content-Type’: ‘application/json’
}
data = {
“topic”: topic,
“type”: 1,
“start_time”: start_time.isoformat(),
}
response = requests.post(‘https://api.zoom.us/v2/users/me/meetings’
, headers=headers, json=data)
2. Authentication method or app type
OAuth
3. Any errors
There is only meeting:write:admin in the avaiable scopes and I already have it implemented, I don’t know what to do, I’ve been reading documentation for two whole days and I can’t find some kind of solution.