ZOOM Windows SDK  5.2.42037.1112
Public Member Functions | Public Attributes | List of all members
tagAuthContext Struct Reference

SDK Authentication parameter with jwt token. Here are more detailed structural descriptions. More...

#include <auth_service_interface.h>

Public Member Functions

 tagAuthContext ()
 

Public Attributes

const wchar_t * jwt_token
 

Detailed Description

SDK Authentication parameter with jwt token. Here are more detailed structural descriptions.

Constructor & Destructor Documentation

◆ tagAuthContext()

tagAuthContext::tagAuthContext ( )
inline

JWT token. You may generate your JWT token using the online tool https://jwt.io/. It is highly recommended to generate your JWT token in your backend server. JWT is generated with three core parts: Header, Payload, and Signature. When combined, these parts are separated by a period to form a token: aaaaa.bbbbb.cccc. Please follow this template to compose your payload for SDK initialization: Header { "alg": "HS256", "typ": "JWT" } Payload { "appKey": "string", // Your SDK key "iat": long, // access token issue timestamp "exp": long, // access token expire time "tokenExp": long // token expire time } Signature HMACSHA256( base64UrlEncode(header) + "." + base64UrlEncode(payload), "Your SDK secret here" )


The documentation for this struct was generated from the following file: