Create token and schedule meeting in jquery

Example of creating JWT token and schedule a meeting in jquery

Hi @anand,

Our APIs only accept creating JWT tokens for meetings on server side only.

Thanks

Hi Michael,

Do you have any sample app for this in .Net

Thanks

Hi @anand,

Currently, we do not have a sample app in .NET. You can visit jwt.io libraries and they have .NET libraries that you can use to create a JWT token.

Thanks

Hi Michael ,

Can you please tell me how we can generate Signature in JWT?

HMACSHA256(
    base64UrlEncode(header) + "." +
    base64UrlEncode(payload),
    API_SECRET)

This i am not getting in any dll.

Thanks