我收到信息給Facebook使用的file_get_contents()如何使用捲曲在Facebook的圖形API請求
但有時我接收到錯誤圖形API。
我發現必須使用cURL而不是file_get_contents()。
問題是,我不知道如何使用cURL與我需要通過的URL。
如果我轉換
file_get_contents($graph_url);
成捲曲,會是怎樣的代碼?
這裏是$ graph_url
$graph_url= "https://graph.facebook.com/me/photos?"
. "url=" . urlencode($photo_url)
. "&message=" . urlencode('')
. "&method=POST"
. "&access_token=" .$access_token;
內容閱讀如何提出請求捲曲文檔。 – 2013-03-04 14:17:38