我正在尝试使用php从我的网站分享图像到脸书。但它只共享缩略图和图像链接。我想获取全尺寸图像而不是图像网址。
这是我的代码
$attachment = array(
'link' =>$_COOKIE['purl'],
'picture' =>'http://cutefacebooktimelinecovers.com/'.$imgurl,
'actions' => array(array(
'name' => 'Cutefacebooktimelinecovers.com',
'link' => 'http://cutefacebooktimelinecovers.com'
))
);
try {
$result = $facebook->api(
'/me/feed/',
'post',
$attachment
);