Struggled for over an hour until I realized the URL for the WebAuthenticator is wrong.
In the code it is:
Url = new Uri(new Uri(Constants.BaseUrl), $"mobileauth/{scheme}")
And it should be:
Url = new Uri(new Uri(Constants.BaseUrl), $"mobileauth/signin{scheme}")
Struggled for over an hour until I realized the URL for the WebAuthenticator is wrong.
In the code it is:
Url = new Uri(new Uri(Constants.BaseUrl), $"mobileauth/{scheme}")
And it should be:
Url = new Uri(new Uri(Constants.BaseUrl), $"mobileauth/signin{scheme}")