I am trying to build up an Facebook application (website and mobile website). After buildup, I found that (p.s. I use the Facebook php API sdk),
index.php:
<!DOCTYPE html>
<?php
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
require_once('config/facebook.php');
config/facebook.php:
<?php
//Initializing
require 'facebook-php-sdk/src/facebook.php';
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => 'appId',
'secret' => 'secret',
));
//End of Initializing
// Get User ID
$user = $facebook->getUser();
echo '<script>alert("' . $user . '");</script>';
P.S. I updated the latest version of facebook php api sdk
It work smoothly on website version (canvas web page). However in mobile, it always return 0.
Can anyone help me? Thanks.