Reputation: 205
I got all information I need for a facebook registration to my database, except a password. How is the user going to get registered if I cant get access to their password? any ideas?
newUser.Alias = User.FbEmail;
newUser.UserName = User.FbEmail;
newUser.EMail = User.FbEmail;
newUser.Password = "password";
newUser.BirthDate = _defaultNoDate;
Upvotes: 0
Views: 71
Reputation: 11063
You will never get a password from Facebook Api. Facebook provides you with an Access Token that allows you to handle your user information
Upvotes: 3