You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting Callback data: {"tag":"885e5899-a955-41a9-a37c-94ecd7fc7158","source":"init","reason":"CLIENT_ERROR"}
After signin is completed and azure redirects to my app url.
Running on flutter web.
Config file as per the readme.
Calling the below fns in initState for main Widget again as per the example provided.
AzureB2C.registerCallback(B2COperationSource.INIT, (result) async {
if (result.reason ==B2COperationState.SUCCESS) {
var _config =awaitAzureB2C.getConfiguration();
AzureLoginFunction().setConfiguration(_config);
}
});
AzureB2C.handleRedirectFuture().then((_) =>AzureB2C.init(AzureLoginFunction.azureAuthConfigFileName));
The text was updated successfully, but these errors were encountered:
I have traced it to the fact that in the authorize url, there is the option client_info that is set to 1, if you remove manually this option, it seems to work, at least when I typed it manually in a web browser.
But I was not able to modify this option in the authorize url. Any idea how I can do that?
Getting
Callback data: {"tag":"885e5899-a955-41a9-a37c-94ecd7fc7158","source":"init","reason":"CLIENT_ERROR"}
After signin is completed and azure redirects to my app url.
Running on flutter web.
The text was updated successfully, but these errors were encountered: