From aa40cea07bac8a5fd8274724acde0004d06c403f Mon Sep 17 00:00:00 2001 From: Embbnux Ji Date: Wed, 9 Oct 2024 10:31:16 +0800 Subject: [PATCH] Update customize-authorization.md --- docs/customize-authorization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/customize-authorization.md b/docs/customize-authorization.md index 401ea86..a76fb04 100644 --- a/docs/customize-authorization.md +++ b/docs/customize-authorization.md @@ -16,7 +16,7 @@ Developers can login to RingCX Embeddable using the [JWT auth flow](https://deve ```js (function() { var rcs = document.createElement("script"); - rcs.src = "https://ringcentral.github.io/engage-voice-embeddable/adapter.js?clientId=YOU_OWN_JWT_APP_CLIENT_ID&clientSecret=YOUR_OWN_JWT_APP_CLIENT_SECRET&jwt=JWT_TOKEN&jwtOwnerId=optional_owner_id"; + rcs.src = "https://ringcentral.github.io/engage-voice-embeddable/adapter.js?clientId=YOU_OWN_JWT_APP_CLIENT_ID&clientSecret=YOUR_OWN_JWT_APP_CLIENT_SECRET&jwt=JWT_TOKEN&jwtOwnerId=OPTIONAL_OWNER_ID"; var rcs0 = document.getElementsByTagName("script")[0]; rcs0.parentNode.insertBefore(rcs, rcs0); })(); @@ -25,7 +25,7 @@ Developers can login to RingCX Embeddable using the [JWT auth flow](https://deve ### Iframe way ```html - ```