Skip to content

Instantly share code, notes, and snippets.

@flarocca
Created February 23, 2021 12:16
Show Gist options
  • Save flarocca/70a994f2489e560eb3469b9ca0750e03 to your computer and use it in GitHub Desktop.
Save flarocca/70a994f2489e560eb3469b9ca0750e03 to your computer and use it in GitHub Desktop.
Azure AD B2C - Idioma - EN
// Español
https://linkedinazureadb2c.b2clogin.com/linkedinazureadb2c.onmicrosoft.com/oauth2/v2.0/authorize?
p=B2C_1_InicioSesionConRegistro&
client_id=f4adfa19-2162-449a-a083-a2c7a1834aec&
nonce=defaultNonce&
redirect_uri=https%3A%2F%2Fjwt.ms%2F&
scope=openid&
response_type=id_token&
prompt=login&
ui_locales=es <-- UI_LOCALES = ES
// Inglés
https://linkedinazureadb2c.b2clogin.com/linkedinazureadb2c.onmicrosoft.com/oauth2/v2.0/authorize?
p=B2C_1_InicioSesionConRegistro&
client_id=f4adfa19-2162-449a-a083-a2c7a1834aec&
nonce=defaultNonce&
redirect_uri=https%3A%2F%2Fjwt.ms%2F&
scope=openid&
response_type=id_token&
prompt=login&
ui_locales=en <-- UI_LOCALES = EN
// Deshabilitado
https://linkedinazureadb2c.b2clogin.com/linkedinazureadb2c.onmicrosoft.com/oauth2/v2.0/authorize?
p=B2C_1_InicioSesionConRegistro&
client_id=f4adfa19-2162-449a-a083-a2c7a1834aec&
nonce=defaultNonce&
redirect_uri=https%3A%2F%2Fjwt.ms%2F&
scope=openid&
response_type=id_token&
prompt=login
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment