How to Login and Logout with Facebook, Checking your App with Facebook Login
In this tutorial i am telling you how to login with Facebook and check your App, This is not a proper example for login to your website with Facebook login, It is only a sample to check your first FB App without doing much effort and coding.
I will explain how to sign up with Facebook in upcoming tutorials so for checking your App you can try this you know how to check if you dont know then learn our previous tutorials..
Simple and Quick Facebook App Development Tutorials
The simple code for Facebook login is given below..
In this tutorial i am telling you how to login with Facebook and check your App, This is not a proper example for login to your website with Facebook login, It is only a sample to check your first FB App without doing much effort and coding.
I will explain how to sign up with Facebook in upcoming tutorials so for checking your App you can try this you know how to check if you dont know then learn our previous tutorials..
Simple and Quick Facebook App Development Tutorials
The simple code for Facebook login is given below..
<?php include 'libs/facebook.php'; $facebook=new Facebook(array( 'appId'=>'your app id', 'secret'=>'your app secret', 'cookie'=>true )); $session=$facebook->getUser(); $me=null; if($session) { try { $me=$facebook->api('/me'); } catch(FacebookApiException $e) { echo $e->getMessage(); } } if($me) { $logoutUrl=$facebook->getLogoutUrl(); echo "<a href='$logoutUrl'>Logout</a>"; $session=null; } else { $loginUrl=$facebook->getLoginUrl(); echo "<a href='$loginUrl'>Login</a>"; } ?>
Just Copy the Above code and paste it in your app code then you can easily login with facebook this example is 100% tested...
For More Tutorial please visit us regularly...
I really appreciate your professional approach. These are pieces of very useful information that will be of great use for me in future.
ReplyDeleteThis is the precise weblog for anybody who needs to seek information about this topic. You positively put a brand new spin on a subject that has been written about for years. Nice stuff, simply nice!
ReplyDeletewhere can i find lins/facebook.php
ReplyDeleteYou need to download it through developers.facebook.com and save it into your project directory.
Delete