Open Deepakraj2022 opened 1 month ago
I use the Azure B2C platform and have an app registration similar to yours. I would suggest you use the returnURL defined in your app registration as shown below:
The return URL should be accessible, I don't see how the login server which is public can redirect to a scheme defined on your host device. I'd remove that from your app registration and check the boxes on the two defined return URLS. From the Overview section of the app registration you can get all the settings you need. Here is a screenshot of my setup for the aad_oauth:
I tried with
RedirectUri: "https://deepakshipnet.b2clogin.com/oauth2/nativeclient",
Login is successfully done but page is not redirected to App. I tried setting config.webUseRedirect to both true and false.
result.fold( (l) => showError(l.toString()), (r) => showMessage('Logged in successfully, your access token: $r'), ); are not executed.
Hi I am trying to login with microsoft login. Once the login is success, then it is not redirected to App.
Below is my androidManifext file `
<application
android:label="newlogin"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
`
below is my configuration in azure portal
Can anyone help me what mistake I made