Hi, thank you very much for allowing me to be part of you community
I am asking for help because I am trying to configure Auth0 to go straight to the provider (instagram) but it doesn’t work.
In this tutorial: https://auth0.com/docs/universal-login#how-does-universal-login-work it says that if I pass the connection params when calling authorize it should do it but it is not working. This is my code
export default class Auth {
auth0 = new auth0.WebAuth({
domain: '...',
clientID: '...',
redirectUri: '...',
responseType: 'token id_token',
scope: 'openid',
})
login() {
this.auth0.authorize({
connection: 'instagram',
})
}
}
Can someone point me out what I am doing wrong?
Note: My app is already configured with instagram in Auth0.
Thank you very much for you help.