In my Zoom app when user click on login iam redirecting user to my web app using OpenUrl Function,
in my web app once user completed Auth Stuff i want to redirect to zoom app in order to do so i see there is a deeplink which help us but iam not fully understand here’s my questions.
Lets say if i want to add a additional token param in deeplink because this token i want to get in zoom client how can i do so?
How can i append some params in deeplink and how can i get those params in zoom client ?
@TimDave Please see our Generate App Deeplink API to deep link to the Zoom Client. We have an example of how you can use this API as part of your authorization for in the basic sample app that I created:
If you want to send user defined data into the client, you can use the action parameter of that API:
Ok i will try but i dont understand how can i get this action value in zoom client app like let say if i pass that payload action:“token fhfhfh” as a action parameter how can i get this action parameter value in zoom app ?
e.g. I did stuff on web app then I got a deeplink that deeplink open my zoom client app and i want to get action parameter in zoom client app
Unfortunately, the Zoom client currently lacks a direct way to access parameters from the deeplink.
But you can check this -
Store the token in your web app’s session or local storage.
When the user is redirected back to your app after login, retrieve the token and pass it to the Zoom client using a different mechanism (e.g., custom event listener).