我使用Facebook Graph API在用户的墙上发布。我还附加了Flash应用程序(" source"参数)。
$data = array(
'name' => 'Test name',
'message' => 'Custom message',
'picture' => 'http://www.example.com/image.png',
'link' => 'http://www.example.com',
'description' => 'Description of the message',
'source' => 'http://www.example.com/flash.swf',
'access_token' => '... token_here ...',
'method' => 'post'
);
$ret = file_get_contents('https://graph.facebook.com/me/feed?'.http_build_query($data));
我无法设置闪光灯尺寸的问题。例如,如果使用REST API,则可以通过" expanded_width"来定义附加的闪存大小。和" expanded_height"参数。
几个月前,当我试图发布这样的帖子时,我看到Facebook将闪存大小设置为398x260,但今天当我再次尝试时,我看到Facebook设置的大小为398x224。
1)有人知道是否有某种方法可以在Graph API中定义Flash大小,就像在REST API中一样?
2)是否有一些官方文档提供了帖子附件的默认大小(来源)?