利用API帖子链接不包括图片,标题或Meta PHP说明(Using API To Post Lin

2019-07-29 21:28发布

当使用API​​发布我收到此:

https://www.facebook.com/weather.warnings/posts/329128793830700

注意如何标题,缩略图和meta描述从缺少的东西。

下面是我使用的代码。

$allalert = array
(
'oauth_token' => 'not pasting this thanks :P',
'message' => "New $type for $where",
'link' => $url,
);
$sendalert = $facebook->api('/125291287567922/links/','POST',$allalert);

引用一个人如何张贴缩略图到一个网站/链接对象? 它说,该项目是直接从页面本身的图片

想法?

Answer 1:

你可以通过在阵列中的下列项目做到这一点:

'name' => "post title",
'link' => "url to the page",
'message'=> "message",
'description' => "longer description",
'picture'=>"url of the picture",
'caption' => "Another bit of text"

这消除了对FB刮板任何依赖外出的URL和刮和分析数据。



Answer 2:

您需要将所需OG标签添加到您的网页。



文章来源: Using API To Post Links Does Not Include Picture, Title or Meta Desc PHP