How are you generating your token? Are you copying the JWT token from your app or are you generating this in your code?
If you’re grabbing the token from your app, please ensure you’re clicking on the ^View JWT Token dropdown under the Credentials tab and are grabbing the token from there. I would recommend double checking that the expiration date is valid as well.
HI thanks for the answer
now the message it gives me is {“code”: 124, “message”: “The Token’s Signature resulted invalid when verified using the Algorithm: HmacSHA256”}
I just have to “invoke” a meeting by zoom from my web-application, then after the users click on the email and do it directly via Zoom is it possible?
is it okay if I use JWT?
Hi Will,
I take this opportunity to ask a small question.
i created my jwt app which allows me to create meetings.
but now how do i associate users with my app so that i can create meetings with different users?
Good question! In order to associate a meeting with a user, you’ll need to create that meeting under the user ID of the user you wish to be the host of the meeting.
In your request to the Create Meeting API, you’ll designate the host user in the request URL: /users/{userId}/meetings
For participants, you don’t need to associated them with a meeting, but rather you can share the join_url in the Create Meeting API response with them in order for them to join as participants.