Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[firebase_auth]: Error invalid_credential on iOS when attempting to call revokeTokenWithAuthorizationCode #16744

Open
1 task done
zakton5 opened this issue Nov 21, 2024 · 2 comments
Labels
Needs Attention This issue needs maintainer attention. platform: ios Issues / PRs which are specifically for iOS. plugin: auth type: bug Something isn't working

Comments

@zakton5
Copy link

zakton5 commented Nov 21, 2024

Is there an existing issue for this?

  • I have searched the existing issues.

Which plugins are affected?

Auth

Which platforms are affected?

iOS

Description

I have set up Sign In with Apple according to the docs and have followed multiple tutorials to make sure I did everything right in my Apple Developer account and Firebase Settings. Pretty sure I'm good to go.

My app sign in with apple does work. The user gets signed up and can use my app normally. The problem is when allowing a user to delete their account. This is the error I get:

[firebase_auth/invalid-credential] Error getting access token from Apple. OAuth2 redirect uri is

The message leads me to think I didn't set something up right, but I have no idea where I would set an "OAuth2 redirect uri"

Expected result: Apple sign in is revoked and disappears from the Apps using Apple Sign In section in apple account settings.

Actual result: Above error message.

Reproducing the issue

Here is my code for both sign up and account deletion. According to the docs here, this is all I need: https://firebase.google.com/docs/auth/flutter/federated-auth#revoke-apple

    // Sign up
    final appleProvider = AppleAuthProvider()
      ..addScope('name')
      ..addScope('email');

    final firebaseCredential = await FirebaseAuth.instance.signInWithProvider(appleProvider);
      // Delete account
      final appleProvider = AppleAuthProvider();
      final res = await user.reauthenticateWithProvider(appleProvider);
      final authCode = res.additionalUserInfo?.authorizationCode;
      if (authCode == null) {
        throw Exception('Unable to get authorization code for apple account');
      }
      await FirebaseAuth.instance.revokeTokenWithAuthorizationCode(authCode);

Firebase Core version

3.8.0

Flutter Version

3.24.3

Relevant Log Output

No response

Flutter dependencies

Expand Flutter dependencies snippet
Replace this line with the contents of your `flutter pub deps -- --style=compact`.

Additional context and comments

No response

@zakton5 zakton5 added Needs Attention This issue needs maintainer attention. type: bug Something isn't working labels Nov 21, 2024
@SelaseKay SelaseKay added plugin: auth platform: ios Issues / PRs which are specifically for iOS. labels Nov 22, 2024
@SelaseKay
Copy link
Contributor

Hi @zakton5, thanks for the report. I tested with your sample code and everything seems to work fine on my end. Could you provide a complete minimal code reproducing this issue?

@SelaseKay SelaseKay added blocked: customer-response Waiting for customer response, e.g. more information was requested. and removed Needs Attention This issue needs maintainer attention. labels Nov 22, 2024
@zakton5
Copy link
Author

zakton5 commented Nov 22, 2024

@SelaseKay Wouldn't that involve setting up a new flutter project, firebase project, apple app identifier, service id, etc.
That's a lot of work that I don't have the time for. Even if I did that, how would you run the app without the means to connect to my apple account via Xcode?

Is there an example repository somewhere that I can cross reference to see if I did things right?

@google-oss-bot google-oss-bot added Needs Attention This issue needs maintainer attention. and removed blocked: customer-response Waiting for customer response, e.g. more information was requested. labels Nov 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs Attention This issue needs maintainer attention. platform: ios Issues / PRs which are specifically for iOS. plugin: auth type: bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants