Hi,
I would like to pass a parameter through querystring in my Authorized redirect URIs how to do?
Hi,
I would like to pass a parameter through querystring in my Authorized redirect URIs how to do?
That's typically ill-advised since that will require you to enter every possible value as a unique redirect uri in the oauth client configuration. If you must do that, you need to encode the redirect uri as a query string parameter.
The recommended way to pass arbitrary data to the result of the auth flow is to use the state parameter: https://developer.mypurecloud.com/api/rest/authorization/additional-parameters.html#the_state_parameter
Also documented in the JS SDK here: https://developer.mypurecloud.com/api/rest/client-libraries/javascript/index.html#authentication
HI,
the parameter that I want to pass is personalized, it's a data that is not in the purecloud, is possible???
Yes, see the state parameter.
This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.