Hi Team,
According to the Auth0 documentation provided in this link (Universal Login Internationalization), it is mentioned that the ui_locales
parameter is supported only by OIDC applications. Could you please guide us on how we can display the login/registration page in a specific language based on the user’s region (e.g., de, es, etc.) when they attempt to log in or register?
Thank you!
Hi @poornima.bal,
You can include the ui_locales
query parameter in a login request to display the login page in that language.
For example:
https://{yourDomain}/authorize?
response_type=code&
client_id={yourClientId}&
redirect_uri={https://yourApp/callback}&
scope={scope}&
audience={apiAudience}&
state={state}&
ui_locales={languageCode}
You can find the full list of language codes here.
And here are some helpful knowledge articles for your reference:
Thanks,
Rueben