Hi @rasikawaykar · Thank you for reaching out.
The response that you get depends on the response_mode
parameter in your authentication request. To avoid getting token as query string, set response_mode
to form_post
The response_mode
parameter specifies the method that should be used to send the resulting token back to your app. Can be one of the following:
- query : provides the token as a query string parameter on your redirect URI
- fragment : provides the token as a query string parameter on your redirect URI
- form_post : executes a POST containing the token to your redirect URI.
-----------------------------------------------------------------------------------------------------------
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.