Facebook发布链接和大图像的帖子

时间:2014-01-17 23:17:23

标签: php facebook facebook-graph-api koala

我使用Koala将帖子链接发布到 Facebook群组

@graph = Koala::Facebook::API.new(access_token)

@graph.put_connections(group_id, "feed", {
              :message   => post_message,
              :picture   => backdrop,
              :link      => url
            })

我收到这篇文章

enter image description here

相反,我必须这样做

enter image description here

1 个答案:

答案 0 :(得分:8)

根据本文件的常见问题Image Optimization for Link Page Posts

  

生成包含大图片的链接分享帖子所需的最小图片尺寸是多少?

     

600 x 315px是我们要求的最小尺寸。但是,我们建议   你最好使用至少1200 x 630像素的图像   在视网膜和高分辨率屏幕上显示。

     

如果图片低于最低要求会怎样?

     

如果图像小于600 x 315px,我们将以154 x渲染   移动或桌面上154px或更小。

     

enter image description here