I am working on a mobile website, the url is "m.something.com" where I ask for extended permissions from the user and after the user permits it I make a call to the apis that are in "something.com"
The apis that are in "something.com" is calling the FB api, But I am getting only the basic details of myself and my friends but not getting work and education history and all that(I have asked for extended permission in "m.something.com" and the user has permitted it)
This is my code:
require_once '../lib/facebook.php';
$facebook = new Facebook(array(
'appId' => APPID,
'secret' => APPSECRET,
));
$fb_id = $_POST['fb_id'];
$att = array('access_token'=>$facebook->getAccessToken());
$queries = array(array('method' => 'GET', 'relative_url' => '/' . $fb_id), array('method' => 'GET', 'relative_url' => '/' . $fb_id . '/friends?fields=id,name,location,education,work,email,gender,link'),);
try {
$batchResponse = $facebook->api('?batch=' . json_encode($queries), 'POST', $appToken);
//Return values are indexed in order of the original array, content is in ['body'] as a JSON
//string. Decode for use as a PHP array.
$me = json_decode($batchResponse[0]['body'], TRUE);
$friends = json_decode($batchResponse[1]['body'], TRUE);
/* session_destroy(); session_start(); session_regenerate_id(); */
$_SESSION['me'] = $me;
$_SESSION['user_id'] = $me['id'];
$_SESSION['friends'] = $friends['data'];
} catch (FacebookApiException $e) {
echo $e;
}
And also when the url is "something.com" for both the sides then it will work but as it is Mobile website I need to have "m.something.com"
Need some help ASAP. what am I doing wrong?? is it some issue with asking for extended perms in "m.something.com" and making the FB->api calls in the other?? Or is it something else??