Can I configure sign up using face book in my android/ios app?
I have successfully integrate Facebook Login in ios and android but this time I need to use face book sign up. I have gone through google and found some tutorial but I got it for web site using iframe.
I also need to store user email and password in my server side database at time of Facebook sign up.
I am using php/mysql at server side.
Thanks in advance to spend your valuable time to solve my question.
Regards, Mayur.
Can I configure sign up using face book in my android/ios app? I have
Share
I am assuming that you want registration via Facebook in your app.
for iOS,
What I have used to get information of user from Facebook login is
1) Show facebook dialog for login into facebook account.
2) When successfully login in
- (void) dialogDidSucceed:(NSURL*)urlmethod will call ofFBLoginDialog.mfile3) Now use
FbGraphResponseto get user details to fullfil your registration process.Example :
Now you can have user details of user for registration process. Show these info in registration view and make it editable so user can change it.
Hope it helps you.