Oxyrus
1
I’m using React Native with Expo, the login is done by visiting mydomain.auth0.com/authorize
with some query params:
const queryParams = toQueryString({
client_id: auth0ClientId,
redirect_uri: redirectUrl,
response_type: 'id_token',
scope: 'openid profile',
nonce: 'nonce',
});
But the user interface provided is in English, and I need it to be in Spanish, is there any other query parameter I can provide so it changes?
Hey there @Oxyrus!
So if you were to use our Lock UI then you can make use of the internationlization customisation. Check it out here:
The way you implemented it, I believe it’s only English.
Oxyrus
4
That’s a bummer, time to explore other alternatives to expo, thanks!
system
Closed
5
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.