2

當使用API​​發佈我收到此:利用API帖子鏈接不包括圖片,標題或Meta說明PHP

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); 

引用how does one post a thumbnail picture to a Facebook /links object?它說,該項目是直接從網頁本身

的想法了嗎?

回答

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和刮和分析數據。

+0

效果不錯,謝謝 –

+0

不再。 – MPaulo

1

您需要將所需的og標籤添加到您的頁面。

+0

OG標籤在那裏......查看鏈接頁面的標題部分。 http://warningweather.com/view/[email protected] –

相關問題