Hey i asked this a few while ago, after that it did work
https://discord.com/channels/564160730845151244/1239415382771634287
but now, i have opened it up again after a few days and now it gives me this error
TL;DR
Developers are encountering an error with Apple Sign in Flutter after a few days of it working. The `await appwrite.account.createOAuth2Session` call is resulting in an unusual error message. A possible solution might be to check for any recent changes in configurations that might have caused the issue to occur.TypeScript
await appwrite.account.createOAuth2Session(
provider: OAuthProvider.apple,
);
This is the call that i am making currently
Recommended threads
- User ID case sensitivity
I see that through REST (and SDK as well), getting a user is not case sensitive. And even though documentation does not clearly state that it is, the wording "V...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Flutter Android oAuth is no more working
I currently don't get the oAuth login to work in flutter android. it works on ios and on web. but when try to use it on Android, i get to the point where the ca...