OnAuthorizedEvent: { code: string; redirectUri: string; result: boolean; state?: string; timestamp: number }

Usage:

zoomSdk.onAuthorized((event) => {
console.log(event)
});

Console log:

{
"code": "2kOV9vGZWb_4G..."
"redirectUri": "https://xxx"
"result": true
"state": "UHbCftHDhjCAjI4FQ..."
"timestamp": 1655142791
}

Type declaration

  • code: string

    OAuth code only when succeed

  • redirectUri: string

    OAuth redirect uri

  • result: boolean

    success or declined

  • Optional state?: string

    customer OAuth state

  • timestamp: number

Generated using TypeDoc