Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

closed as not a real question by CBroe, Madara Uchiha, dave.c, Bryan Crosby, Florent Oct 15 '12 at 16:00

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.

2 Answers

up vote 1 down vote accepted

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.

share|improve this answer

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

share|improve this answer
thanks man... i just downlaoded this... the github link that you just posted... will it work fine? – RickeyWalia Oct 15 '12 at 7:54
can i use this in my codeignter version i.e facebook registration plugin given here developers.facebook.com/docs/plugins/registration – RickeyWalia Oct 15 '12 at 8:09
I have not used this but I guess it will work. Author says you need to do some work on your end before it will work. – conor Oct 15 '12 at 8:42
ohkkk...... i will try to implement this after taking an brief overview from all other sources – RickeyWalia Oct 15 '12 at 9:36
hi.... sign up with facebook worked but there are problems in sign-up with twitter....... can anyone please help.... – RickeyWalia Oct 16 '12 at 4:52
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.