2011-02-07 78 views
1

上張貼進我知道如何張貼在牆上的東西$facebook->api('/me/feed/', 'post', $feed); 但如何發佈我的Facebook應用程序頁面上飼料和這種飼料必須由應用程序發佈我的Facebook應用程序的風扇

回答

4

在這裏你去:

// 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!")); 
+0

非常感謝這項工作,圖api和access_token的概念仍然抽象爲我。 – nirvanist 2011-02-07 22:25:09

相關問題