I am required to implement the functionality of registering a user onto my current website using the Facebook signup process
Can anyone provide me with a link to some guide or blog where some help regarding this has been provided.
|
I am required to implement the functionality of registering a user onto my current website using the Facebook signup process Can anyone provide me with a link to some guide or blog where some help regarding this has been provided. |
||||
|
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Use your imagination. Simply look at the Facebook documentation. It's not as good documented as it could be, but it works it you read everything at least twice. Make an authentication, retrieve the information you want such as email etc if needed. If the information you get from Facebook is enough, create a account like any other, but save the Facebook ID so you can log them in next time. If you need more information, you can retrieve the Facebook data once the other data have been submited and register the user. If making your own version is too hard or time consuming, google for an existing one. Tags: codeigniter facebook login Personally, I use Facebook's graph api through a personally made library which handles all of my calls to Facebook. With a simple and clean API such as the one they provide, it gets easy enough to manage without a php sdk. |
|||
|
|
|
Here is the official article from the Facebook developer portal on registering users using the Facebook registration plugin < http://developers.facebook.com/docs/plugins/registration/ > Also, here's a plugin I just found on GitHub. I think it's exactly what you are looking for < https://github.com/falexandrou/Codeigniter-Social-Register > EDIT: Also, please see this SO Question: Using Facebook PHP-SDK 3.x to register/login user with Codeigniter 2.1.0 |
|||||||||||
|