is anyone else having issues when trying to authenticate in Firebase from iOS? Last days my app started failing/ Web and Andoird looks is working fine so far.
Can you provide a minimal example of this issue? I am unable to reproduce this on my side and your app has a lot more going on besides just authentication making it harder to debug completely.
That is my assumption. When using from the web, you will be using your GMail ID that is connected to Firebase DB and you are the owner of the DB and therefore it will not fail.
Thanks for the observation. I will locate this cloud var just after the authentication, however, web and android working fine and that var is out of the user id data, it is just on the DB root for all users. I will be sharing a video in a couple of hours or less. Will check also moving the var you mentioned.
I would guess this is due to the fact that the email name used (GMail) is the same as the email name you are using for the Firebase DB. This is nor the case for iOS.
Yes, I can tell from the blocks that it is a root key (master bucket)
A good way to test is to go to the DB rules and change them to have no security/restriction and test your app again.
Tested with no security before and was working fine.
I have changed the var asignation (cloud) after the authentication block and now is working fine. Actually, I changed this few days ago wrongly positioning it before sign-in block.
You are using a stored UID which means even if the login is not successful the variable will still hold the information from last login. which could be the reason you are not getting the info.
Can’t say more without seeing the complete blocks for Sign In and what happens to the UID variable from the point the app is opened.