Código PHP:
<html>
<head>
<title>Iniciar Con FB</title>
</head>
<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/es_ES/all.js"></script>
<script>
FB.init({
appId:'00000000', cookie:true,
status:true, xfbml:true
});
</script>
<fb:login-button length="long" onlogin="location.href='index2.php'"></fb:login-button>
<script type="text/javascript" src="H T T P : //static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php"></script>
<script type="text/javascript">
FB.init("00000000000","xd_receiver.htm";
</script>
<?
require_once 'src/facebook.php'; //Ruta de la aplcacioni...
$Aplicacion = '00000000000';
$ClaveSecreta = '000000000000000';
$Facebook = new Facebook($Aplicacion, $ClaveSecreta);
?>
Código PHP:
<!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>Logiado</title>
</head>
<body>
<fb:login-button length="long" onlogin="location.href='index.php'"></fb:login-button>
<script type="text/javascript" src="H T T P : //static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php"></script>
<script type="text/javascript">
FB.init("150153441742642","xd_receiver.htm";
</script>
<?
require_once 'src/facebook.php'; //Ruta de la aplcacioni...
$Aplicacion = '150153441742642'; //No olvides ingresar la key de tu aplicación
$ClaveSecreta = 'f5d1a612a12e5a57f737660d504f1a3c'; //No olvides ingresar la clave proporcionada por FB
$Facebook = new Facebook($Aplicacion, $ClaveSecreta);
if ($Facebook->get_loggedin_user())
{
$fid = $Facebook->require_login(); //obtenemos el id del user en FB
$user_details = $Facebook->api_client->users_getStandardInfo($fid, array('last_name','first_name')); //intentamos obtener un poco de información del perfil
$Nombre = $user_details[0]['first_name']; //Almacenamos los datos del array
$Apellido = $user_details[0]['last_name']; //Seguimos con la matriz, esta vez almacenamos el Apellido
}
echo $Nombre."<----no sale nada";
?>
</body>
</html>
Le pido su ayuda por quiero hacer esto par una aplicacion que estoy creadon o si alguien tiene el script que funione me lo puede enviar a [email protected] se lo agracere mucho.
Bendiciones a todos...