2

使用 API 发布时,我收到以下信息:

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

注意标题、缩略图和元描述是如何从事物中丢失的。

以下是我正在使用的代码。

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

参考如何将缩略图发布到 Facebook /links 对象?它说该项目从页面本身中提取图片

想法?

4

2 回答 2

5

您可以通过在数组中传递以下项目来做到这一点:

'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 并抓取和解析数据。

于 2012-06-13T06:15:34.053 回答
1

您需要将所需的 og 标签添加到您的页面。

于 2012-06-12T23:40:02.570 回答