Rank 1: Thread
I am using the Gitlab OAuth2 Provider to do the authentication and it worked perfectly in iOS and Android.
However, when I run the application in Web mode. I get stuck on the callback page (see first screenshot).
According to https://appwrite.io/docs/getting-started-for-flutter#web
I added the web/auth.html
And adapted my call
await _account.createOAuth2Session( provider: 'gitlab', success: 'http://localhost:8000/auth.html', failure: 'http://localhost:8000/', );Now the web works, but the iOS and Android get stuck (see second screenshot).
What am I doing wrong 🙂
