Так что я использовал API-интерфейс facebook, чтобы вытащить страницы, которые мне нравятся на Facebook, он работает на моем компьютере на базе Windows на всех браузерах. Но когда дело доходит до проверки результатов с другого компьютера, это не работает ... Любая идея почему? Режим Sandybox отключается слишкомFacebook api результаты работают только с моего компьютера, но не с другими компьютерами
Это метод, который я использовал, я использовал API Graph с идеей страницы, чтобы получить информацию о нем, в том числе изображения на обложке страницы .. Ниже приведен пример
$pages = $facebook->api("/224837280446");
Он работает на моем ноутбуке на базе Windows, но не на маке. Ваша помощь будет так оценена.
Вот мой конфиг
<?php
//facebook application
$fbconfig['appid' ] = "xxxxxxxxxxxxxxxxxxxxxxxx";
$fbconfig['secret'] = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$fbconfig['baseurl'] = "http://xxxxxxxxxxx.php";
//
if (isset($_GET['request_ids'])){
//user comes from invitation
//track them if you need
}
$user = null; //facebook user uid
try{
include_once "facebook.php";
}
catch(Exception $o){
error_log($o);
}
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => $fbconfig['appid'],
'secret' => $fbconfig['secret'],
'cookie' => false,
));
//Facebook Authentication part
$user = $facebook->getUser();
// We may or may not have this data based
// on whether the user is logged in.
// If we have a $user id here, it means we know
// the user is logged into
// Facebook, but we don稚 know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.
$loginUrl = $facebook->getLoginUrl(
array(
'scope' => 'email,offline_access,publish_stream,user_birthday,user_location,user_work_history,user_about_me,user_hometown',
'redirect_uri' => 'http://www.europe-zone.com/members.php'
)
);
$logoutUrl = $facebook->getLogoutUrl();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
//you should use error_log($e); instead of printing the info on browser
// d($e); d is a debug function defined at the end of this file
$user = null;
}
}
//if user is logged in and session is valid.
if ($user){
//get user basic description
$userInfo = $facebook->api("/$user");
//Retriving movies those are user like using graph api
try{
$movies = $facebook->api("/$user/movies");
// $pages = $facebook->api("/224837280446");
// $feeds = $facebook->api("/224837280446/feed");
}
catch(Exception $o){
d($o);
}
//update user's status using graph api
//http://developers.facebook.com/docs/reference/dialogs/feed/
if (isset($_GET['publish'])){
try {
$publishStream = $facebook->api("/$user/feed", 'post', array(
'message' => "I love thinkdiff.net for facebook app development tutorials. :)",
'link' => 'http://ithinkdiff.net',
'picture' => 'http://thinkdiff.net/ithinkdiff.png',
'name' => 'iOS Apps & Games',
'description'=> 'Checkout iOS apps and games from iThinkdiff.net. I found some of them are just awesome!'
)
);
//as $_GET['publish'] is set so remove it by redirecting user to the base url
} catch (FacebookApiException $e) {
d($e);
}
$redirectUrl = $fbconfig['baseurl'] . '/members.php?success=1';
header("Location: $redirectUrl");
}
//update user's status using graph api
//http://developers.facebook.com/docs/reference/dialogs/feed/
if (isset($_POST['tt'])){
try {
$statusUpdate = $facebook->api("/$user/feed", 'post', array('message'=> $_POST['tt']));
} catch (FacebookApiException $e) {
d($e);
}
}
//fql query example using legacy method call and passing parameter
try{
$fql = "SELECT page_id FROM page_fan WHERE uid = me()";
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ''
);
$fqlResult = $facebook->api($param);
}
catch(Exception $o){
// d($o);
}
// Second query
try{
$sql = "SELECT page_id FROM page_fan WHERE uid = me()";
$param = array(
'method' => 'fql.query',
'query' => $sql,
'callback' => ''
);
$sqlResult = $facebook->api($param);
}
catch(Exception $o){
// d($o);
}
}
function d($d){
echo '<pre>';
print_r($d);
echo '</pre>';
}
?>