Robin Genz

Results 574 comments of Robin Genz

@ngarel See https://github.com/capawesome-team/capacitor-firebase/blob/main/packages/authentication/docs/setup-google.md#ios

This must be a configuration issue. Please have a look at this SO answers: https://stackoverflow.com/questions/51925442/firebase-auth-requests-from-this-android-client-application-com-xxx-are-blocked Please try to create a minimal, reproducible example with a fresh Firebase and Twitter project....

Unfortunately I can't help you as long as I can't reproduce and debug the issue. These issues seem to have the same problem: - https://github.com/googleapis/google-cloud-java/issues/1697 - https://github.com/apache/cordova-cli/issues/429

Seems like a duplicate of https://github.com/firebase/firebase-js-sdk/issues/5020. Make sure you use Firebase JS SDK Version 9.8.2 or later.

Okay, then please have a look at this issue: https://github.com/ionic-team/capacitor/issues/5531

AngularFire is just a wrapper for the Firebase JS SDK. Try to adjust the initialization of the Firebase JS SDK according to the SO answer: ```ts if (Capacitor.isNativePlatform()) { return...

Great, thanks for sharing. In this case I will close this issue.

I don't have any experience with this so far but it seems it's a bit more complex and you have to manage the OAuth access tokens yourself, see: - https://github.com/firebase/firebase-js-sdk/issues/519...

@basvdijk Thank you! I will use this as inspiration.

After a page reload Firebase needs a short time to load the current auth state. You can use the `authStateChange` listener to get notified. For example, this is a code...