опубликуйте ленту на моей странице в Facebook - PullRequest
1 голос
/ 07 февраля 2011

Я знаю, как разместить что-то на моей стене $facebook->api('/me/feed/', 'post', $feed); но как разместить фид на моей странице приложения в Facebook и этот фид должен быть опубликован приложением

1 Ответ

4 голосов
/ 07 февраля 2011

Вот, пожалуйста:

// we need to get an application access_token first
$token_url = "https://graph.facebook.com/oauth/access_token?" .
   "client_id=" . $app_id .
   "&client_secret=" . $app_secret .
   "&grant_type=client_credentials";
$app_token = file_get_contents($token_url);

// seperate the string returned to use it in the post array
$arr = explode("=",$app_token);
$app_token = $arr[1];

$post_id = $facebook->api("/$app_id/feed", "POST", array("access_token"=>$app_token,"message"=>"hello app!"));
...