我尝试自动将帖子分享到我的脸书页面。它工作得很好,但我想在共享帖子中使用更大的图像。 http://cdn.tips4php.net/wp-content/uploads/2010/12/final_post.jpg
我使用以下代码发布它:
try {
$page_info = $facebook->api("/$pageId?fields=access_token");
$attachment = array(
'access_token' => $MYACCESTOKEN,
'message' => $msg,
'name' => $title,
'link' => $uri,
'description' => $desc,
'picture'=>$pic,
'actions' => json_encode(array('name' => $action_name,'link' => $action_link))
);
$status = $facebook->api("/$pageId/feed", "post", $attachment);
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
如何在这篇文章中使用更大的图片?我看到其他Facebook页面上的一些共享帖子,他们有大局。等待你的回答..
答案 0 :(得分:1)
只有在管理员手动共享图像/帖子时才会显示较大的图像。如果您使用API,Facebook会故意使用较小的图像。基本上,Facebook希望促进手动共享内容而不是自动共享。
在你看过的例子中,他们中的任何一个都有“via xxx app”,就像你的截图一样吗?如果帖子是手动共享或通过应用程序共享,这是一个赠品。