私の質問は簡単です。PHPの壁(タイムライン)ではなく、最近のティッカーとアクティビティに投稿する方法。(アクションを公開します)。私はすでにjavascriptでやったが、phpでそれが欲しい
私はこれをテストしました:
$params = array(
'message' => "This post is a test",
'name' => "Titre de mon test",
'caption' => "My Caption",
'description' => "Some Description...",
'link' => "http://stackoverflow.com",
'actions' => array('name'=>'Recipe','link'=>'url'),
'picture' => "http://i.imgur.com/VUBz8.png",
);
$post = $facebook->api("/$user/feed","POST",$params);
ありがとう。
私は編集を見つけました:
見つけた
<meta property="og:title" content="My article" />
<meta property="og:type" content="namespace:recipe" />
<meta property="og:url" content="http://url/" />
<meta property="og:image" content="" />
<meta property="fb:app_id" content="apikey" />
<meta property="og:description" content="My wonderful article" />
とphp
try {
$action = array('name' => 'recipe', 'link' => 'http://url/');
$actions = json_encode($action);
$params = array('recipe'=>'http://url/','access_token'=>$facebook->getAccessToken(), 'actions'=> urlencode($actions));
$out = $facebook->api('/me/namespace:cook','post',$params);
echo "Your post was successfully posted to UID: $user";
}
catch (FacebookApiException $e) {
$result = $e->getResult();
}
}