I have successfully create link between Auth0 app and Azure AD. Everything works with the default Lock screen. Now I’m trying to create a hosted login page with auth0.js. What has to be the value of the connection property ({connection: ‘waad’} ) in order to trigger Microsoft’s popup login?
export default function Login() {
const auth0 = new WebAuth({
domain: "...",
clientID: "...",
audience: "...",
responseType: "token"
});
const handleLogin = () => {
auth0.popup.authorize({
connection: 'waad'
});
};
...