You don’t need to worry about the password at all. You can simply get the user associated with the facebook account and then authenticate this user manually
var userName= YourRepository.GetUsernameByFacebookId(returnedFacebookId);
FormsAuthentication.SetAuthCookie(userName);
source
share