我一直在尋找關於如何做一個Facebook API調用獲取頁面狀態消息的堆棧和Facebook文檔。Facebook api:無法打開流:HTTP請求失敗! HTTP/1.0 400錯誤請求與
到目前爲止,我有這樣的:
$url = "https://graph.facebook.com/dogfishheadbeer/statuses?fields=message,updated_time&limit=5";
$url_with_token = $url . "?access_token={$access_token}";
$facebookData = json_decode(file_get_contents($url_with_token));
我不知道如何讓我的訪問令牌雖然。我去了Facebook的API探險家在這裏:
https://developers.facebook.com/tools/explorer/
和我點擊「GETT存取權限令牌」,但在我的PHP cpde使用hwen我得到這個錯誤:
Warning: file_get_contents(https://graph.facebook.com/dogfishheadbeer/statuses?fields=message,updated_time&limit=5?access_token=myAccesToken) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request
我也讀存取權限令牌到期和我的網站需要能夠刷新它們。我有點遺憾接下來要做什麼,任何幫助,將不勝感激。
考慮使用Facebook的FQL。 https://developers.facebook.com/docs/reference/fql/ – Alex 2013-03-19 15:23:21