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

"Unable to process request due to missing initial state" when using startActivityForSignInWithProvider with Apple sign in #6144

Open
datvm opened this issue Aug 1, 2024 · 11 comments

Comments

@datvm
Copy link

datvm commented Aug 1, 2024

[REQUIRED] Step 2: Describe your environment

  • Android Studio version: N/A. Visual Studio 2022 Version 17.10.5
  • Firebase Component: Authentication
  • Component version: 22.3.1.2

[REQUIRED] Step 3: Describe the problem

Steps to reproduce:

Following Authenticate Using Apple on Android, I have this code (C# but it should be equivalent to Java):

var activity = await Platform.WaitForActivityAsync();
var provider = OAuthProvider.NewBuilder("apple.com").Build();

try
{
    var authResult = await auth.StartActivityForSignInWithProvider(activity, provider).AsAsync<IAuthResult>();
    FbUser = authResult.User;

    return authResult.Credential;
}
catch (FirebaseAuthWebException ex)
{
    if (ex.ErrorCode == "ERROR_WEB_CONTEXT_CANCELED")
    {
        return null;
    }

    throw;
}

After calling StartActivityForSignInWithProvider, an in-app browser is opened but after signing in successfully, this page opens instead:

image

Closing this page by pressing X on the top left corner also closes my app and the next time the app starts, it is stuck at the splash screen and has to be restarted.

Relevant Code:

See above.

@google-oss-bot
Copy link
Contributor

I found a few problems with this issue:

  • I couldn't figure out how to label this issue, so I've labeled it for a human to triage. Hang tight.
  • This issue does not seem to follow the issue template. Make sure you provide all the required information.

@lehcar09
Copy link
Contributor

lehcar09 commented Aug 1, 2024

Hi @datvm, thank you for reaching out. I tried to reproduce the issue using the Firebase quickstart app, however, I did not encounter the error.

Can you share the browser you’re using when you encounter the issue? Also, were you able to check the possible scenarios shared that might have caused the issue?

Aside from that, I just wanted to share this Stack Overflow post that encounters the same issue. Could you try the suggested steps in registering my app with SafetyNet with SHA2? According to the post, the issue might be due to missing SafetyNet. The app tries to redirect you to a browser for Recaptcha for verification if you don't have SafetyNet. Thus, having no SafetyNet will cause your app to always be redirected to Recaptcha which sometimes causes an error. To resolve this issue, register your app with Safety Net. You can check this documentation, Enabling App Verification, for more information.

@rsegecin
Copy link

rsegecin commented Aug 5, 2024

Hi @lehcar09 I've encountered this issue when I'm trying to login on X using firefox see firebase/flutterfire/issues/13141.

@datvm
Copy link
Author

datvm commented Aug 5, 2024

@lehcar09 Hi, I do not use SafetyNet so I don't think it's relevant (and I heard it's obsolete soon from the SO post you linked). The browser being opened is Microsoft Edge for Android. It happens about 2/3 of the time I tried. Sometimes the log in is successful but it's in the minority.

@lehcar09
Copy link
Contributor

Thank you for the details @datvm. I was able to reproduce the issue when using the Microsoft Edge browser. I'll inform our engineers about and see what we can do here. Thanks!

@lehcar09
Copy link
Contributor

Hi @datvm, our engineers are already looking into it. By any chance, can you help us and share a console log from Microsoft Edge for Android upon encountering the issue? Thanks!

@google-oss-bot
Copy link
Contributor

Hey @datvm. We need more information to resolve this issue but there hasn't been an update in 5 weekdays. I'm marking the issue as stale and if there are no new updates in the next 5 days I will close it automatically.

If you have more information that will help us get to the bottom of this, just add a comment!

@datvm
Copy link
Author

datvm commented Aug 24, 2024

This is the best I could get:

image

Navigated to https://<name>.firebaseapp.com/__/auth/handler
Navigated to https://<name>.firebaseapp.com/__/auth/handler
handler:1  Edge is blocking ads on this site because this site tends to show ads that interrupt, distract, mislead, or prevent user control. You should fix the issues as soon as possible and submit your site for another review. Learn more at https://www.chromestatus.com/feature/5738264052891648
handler:1  Edge is blocking ads on this site because this site tends to show ads that interrupt, distract, mislead, or prevent user control. You should fix the issues as soon as possible and submit your site for another review. Learn more at https://www.chromestatus.com/feature/5738264052891648
handler.js:284  Unable to process request due to missing initial state.
Nk @ handler.js:284
(anonymous) @ handler.js:630
a @ handler.js:168
(anonymous) @ handler.js:168
c @ handler.js:168
e.kc @ handler.js:176
jh @ handler.js:179
fh @ handler.js:179
K.jk @ handler.js:178
a @ handler.js:168
(anonymous) @ handler.js:168
c @ handler.js:168
Qg @ handler.js:169
a
Jg @ handler.js:169
bh @ handler.js:175
K.then @ handler.js:173
qt.qb @ handler.js:630
qt.start @ handler.js:629
(anonymous) @ handler.js:634
(anonymous) @ handler:10

lehcar09 added a commit to lehcar09/firebase-android-sdk that referenced this issue Aug 26, 2024
@lehcar09
Copy link
Contributor

According to our engineers, based on your logs, it seems like Edge is blocking the firebaseapp.com/__/auth/handlers endpoint because of ads. It's blocking that endpoint, so the endpoint couldn't perform what it was supposed to so that's why they got the error. Unfortunately, there's nothing much we can do in this case because it’s a third party browser. I would suggest reaching out to Microsoft to request them not to block the Firebase endpoints.

We’ll leave the issue open for now. For folks who are experiencing the same issue, adding an emoji thumbs up on the original post can help us prioritize adding this to the roadmap. Thanks!

@mehmetartun
Copy link

I am getting exactly same with apple sign in. It remains stuck on the chrome (in Android emulator) but actually it logs in...

image

@gpawlik1
Copy link

@mehmetartun Have you figured out any solution or a workaround?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants