When I try to register with email and password I am facing a problem. When I watched it with console it is showing this link:
XHR-POSThttps://identitytoolkit.googleapis.com/v1/accounts:signUp?key=AIzaSyC2FSr0NLqpqdJO-yX8HfvyH2cWwERMPOI
I thought because of the 5 digits password it might be showing the problem but it didn't help.
Related
my app firstly only contains google login and now I removed it and now users need to login using email and password but when my old customer (who already login with google) unable to signup with old email address it showing "The email address is already in use by another account." and they don't have any password? How to solve this issue
problem solved by implementing this.afAuth.auth.sendPasswordResetEmail(this.email).catch(error=>{}).then(res=>{});
I have my firebase authentication set to prevent multiple accounts for the same email, but it doesn't seem to be doing that. See following pictures:
Has anybody experienced this issue before?
**Edit: Here's the details for reproducing this bug:
Pretty much the problem boils down to the updateEmail() function.
When a user signs up for my app I want to ensure I have an email for the user so searching for that user is easier. The problem is Facebook authentication doesn't ensure the user has an email for the following two reasons:
The user could have not allowed email permissions.
The user could have created their Facebook account only using a phone number.
Because of this, my
login code is somewhat complex but here's a link to my code with comments to explain everything (Note that I'm using custom Facebook/Google buttons which is why I had to manually do some stuff): Login Gist
If you look at the func getFBUserData() and see the comments above it, the bug is happening in the Case 1's first bullet point:
// 1) user's facebook does have email. This is common case
// - in this case, sign them into Firebase
// - could be that they previously didn't have email but now they do, so update Firebase user's email
This is the edge case where for some reason a user first didn't allow email permissions, then changed their minds and allowed them. What's interesting is that the code will still throw the .errorCodeEmailAlreadyInUse error, but the account will show up in the Firebase console as seen in the picture in the SO question and the following which I just did: http://imgur.com/yMjYXgH
I have a new project in the developers console, and cannot seem to add new users. I send the invitation, this is forwarded to the correct Gmail account with the RSVP link:
'https://console.developers.google.com/project/[appname]/rsvp/'
which however results in an error message:
'The server has encountered a problem. Please try again.'
We tried inviting other gmail users and still no luck.
We also made this user an administrator of the billing account, and that works fine. Just the project is not visible to the user.
Anyone has an idea what could be the problem?
Thanks!
Ok, so the problem was in the automatic link sent by Google, which read:
https://console.developers.google.com/project/app[projectname]/rsvp/
but should have been
https://console.developers.google.com/project/app%7E[projectname]/rsvp/
It seems somewhere on the way the tilde got lost.
After changing the link by hand the RSVP works fine.
I hope this helps someone else in this situation.
I just had the same Problem, i realised that i was logged in to several google accounts, work, private etc...
I logged out and logged back in with the account i was invited to the console project and hit the link sent in the email, surprisingly it worked.
Good luck, for anyone else encountering this problem.
I was using facebook connect in my website(CMS-Wordpress). The problem what I'm facing is user can't logout after logged in. It drives me crazy. Anybody got that problem and how fixed it? Let me share your experience.
Do you need to send a logout request to Facebook connect?
I have a web site which I preferred to use a membership wizard. It was working with all its features:
Sign Up
Login
Password Recovery
but these days the password recovery page does not work. I enter my user name but it says the provided username has not found but it is there!
I tried to code the page I mean not only wizard component but also some hard-code. I mean the following links page...
http://msdn.microsoft.com/en-us/library/d94bdzz2.aspx
but still get the same error. The user name could not found.
Please help me to fix the error.
Regards
BK
Actuallly it works.
I found the answer. The users that I cannot get the recoveried passwords are the blocked users. In the configuration file if the user enters the password 5 times wrong, the default configuration blocks them. The key is to unblock them.
Regards
BK