I have been using the below code to 1) check that is there a facebook session open, if open get the name(first & last) and email. The page is facebook_signup.php 2) if not, signup using facebook and save a session into database which is in signup.php.
Below is the code for facebook_signup.php.
<?php
// Awesome FB APP
// Name: MyAPP
require_once 'facebook-php-sdk-master/src/facebook.php';// this line calls our facebook.php file that is the
//core of PHP facebook API
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => 'xxxxx',
'secret' => 'xxxxx',
'cookie' => true,
)); // all we are doing is creating an array for facebook to use with our
$user = $facebook->getUser();
echo $user;
//app id and app secret in and setting the cookie to true
if($user){
try {
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user=null;
} // this code is saying if the session to the app is created use
}
//the $me as a selector for the information or die
?>
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<title>Facebook APP</title>
</head>
<body>
<? if ($user) { ?>
<form action='signup.php' method='post'>
<fieldset class="field_name">
<label>First Name</label>
<input class="name" name="first_name" type="text" value=" <? if ($user)
{echo $me['first_name'];} else{echo 'First Name';} ?>" >
</fieldset>
<fieldset class='field_name'>
<label>Last Name</label>
<input class="name" name="last_name" type="text" value="<? if ($user)
{echo $me['last_name'];}else{echo'Last Name';} ?>" >
</fieldset>
<fieldset>
<label>Email Address</label>
<input name="email" type="text" value="<? if ($user)
{echo $me['email'];}else{echo'email address';} ?>" >
</fieldset>
<fieldset>
<input name="submit" type="submit" value="submit" />
</fieldset>
</form>
<? } else { ?>
<p>Sign up with Facebook <fb:login-button perms='email'> Connect</fb:login-button>
It only takes a few seconds</p>
<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<script>
FB.init({
appId:'250941738370233', cookie:true,
status:true, xfbml:true
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload(); //will reload your page you are on
});
</script>
<? } ?>
</body>
</html>
Can someone please tell me why cant i get the user login session still when am logged into facebook. Also in the value field, unexpected results are coming(something errored out). Am new to this thing and trying to save sessions of users(name and email) into database.
echo $me['email'];but$meis not defined. Use$userinstead. – mxgr Jan 21 at 8:02