2013-01-24 72 views
1

我使用PHP腳本在我上面的代碼順心後通過外部open graphfacebook API像後使用Facebook的API開放圖形

$response = $facebook->api('/me/og.likes','POST',array('object' => "")); 

我有對象來寫,這樣我的帖子會被喜歡。

感謝

回答

0

把對象的URL在雙引號,像這樣:

$response = $facebook->api('/me/og.likes', 'POST', array('object' => "http://www.example.com/foo")); 

但對於這個工作,你必須確保你鏈接到該文檔中有opengraph元。 Check the docs

+0

謝謝,但我想知道 這是正確的方法 –