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 have a site in which i want to implement login through facebook functionality. What can i do? Please help me... I have tried this it redirecty into facebook but does not log in.

 <?php
    if($_SESSION['id'] == '' && $_SESSION['username'] =='' && $_SESSION['oauth_provider'] =='')
    {
    ?>
                    <a href="login.php?login&oauth_provider=facebook" target="_blank"><li style="margin-top:-3px; margin-right:0px;"><img src="http://yespricer.com/theme/Freshness/images/facebook.jpg" alt="fb"/></li></a>
share|improve this question
read the developer section. there is SDK for it. – itachi Oct 30 '12 at 12:03

closed as not a real question by Lion, CBroe, Jocelyn, Nik...., Dharmendra Oct 31 '12 at 4:18

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.

1 Answer

Use the PHP instead of programming it by yourself:

https://github.com/facebook/facebook-php-sdk

The usage is explained in detail if you just scroll down. If you need more info:

https://developers.facebook.com/docs/reference/php/

share|improve this answer

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