Hi!
My app was previously creating meetings happily, but recently stopped working.
Most recently, my token response was:
{“access_token”:“edited”,“token_type”:“bearer”,“expires_in”:3599,“scope”:“meeting:master meeting:read:admin meeting:write:admin”}
I’m then posting the following JSON request to: https://api.zoom.us/v2/users/[account email address was here]/meetings
{
“agenda”: “This is a test meeting”,
“default_password”: false,
“duration”: 30,
“password”: “123456”,
“pre_schedule”: false,
“schedule_for”: “[valid user email address was here]”,
“settings”: {
“approval_type”: 0,
“mute_upon_entry”: true,
“participant_video”: false,
“registrants_confirmation_email”: true,
“registrants_email_notification”: true,
“show_share_button”: false,
“waiting_room”: true
},
“start_time”: “2022-12-02T16:30:00”,
“timezone”: “Europe/London”,
“topic”: “Test Meeting”,
“type”: 2
}
Is the ‘Expires in’ value of 3599 normal for a server to server OAuth 2 token?
I have absolutely no idea where to go from here, so any pointers would be very much appreciated.
UPDATE: I’ve just set up a Postman account, and despite auth apparently working, when I make a request I’m getting an “Invalid Access Token” reponse:
{“code”:124,“message”:“Invalid access token.”}
Many thanks,
Scott