Trying to implement B2C custom policy which allow login with MSFT accounts (Personal, School & Work)
Referred this link: https://learn.microsoft.com/en-gb/azure/active-directory-b2c/identity-provider-microsoft-account?pivots=b2c-custom-policy
I have created new app registration in Azure Portal but this above link says I have to choose select personal Microsoft accounts (e.g. Skype, Xbox) but there is no such option available
So I choose option 2 Any Microsoft Enfra Id tenant – Multitenant
And also made sure in manifest of app registration these values exist i.e.
"accessTokenAcceptedVersion": 2,
"signInAudience": "AzureADandPersonalMicrosoftAccount"
I have configured Technical Profile & User Journey as mentioned in above link but I am getting this error
and this is how URL looks like
https://login.live.com/oauth20_authorize.srf?client_id=CLIENT-ID&redirect_uri=https://tenant.b2clogin.com/tenant.onmicrosoft.com/oauth2/authresp&response_type=code&scope=openid+profile+email&response_mode=form_post&nonce=dg+B2uAXd8VgMsdIvfw/jQ==&prompt=login&state=StateProperties=eyJTSUQiOiJ4LW1zLWNwaW0tcmM6MzQ5ODRiNDgtMTI1ZC00N2ZlLTg3ZWUtYjFjZWY5OWE1MmI4IiwiVElEIjoiYWY3NWRlM2MtMzljNS00ZWEwLTkxOTktNzQxZTllOWNhZDc1IiwiVE9JRCI6IjM4Y2Y4NGUxLTRjYmItNGFiYi04YWEzLTRjMGY3MTA3YzU4NSJ9
Any help will be appreciated