i wanted to integrate to another org via sso. i sent them the credentials -domain, clientId , clientSecret. but from their login screen auth0 redirects to/oauth2/v1/authorize?clientId=… from the base url which results in 404 not found error while /authorize?clientId=… works fine . i do not understand where this extra /oauth2/v1/ is coming from .this did not happen with other organisations.
Hi Aniket,
When a user is redirected to the wrong authorization URL from their organization, the issue is on their end. Please request them to check how they are forming the authorization URL from the base URL.
Welcome to the Auth0 Community!
Thank you @vigneshSivasamy for your contribution!
Indeed, it appears that the organization does not redirect the user to the proper /authorize
.
As you might already know via our Authentication API documentation, the proper endpoint should be:
https://{YOUR_AUTH0_DOMAIN}/authorize?
response_type=code|token&
client_id={client_id}&
connection=CONNECTION&
redirect_uri={https://yourApp/callback}&
state=STATE&
ADDITIONAL_PARAMETERS
Let us know if you have any extra questions on the matter.
Kind Regards,
Nik
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.