2
我試圖通過使用圖形API刪除Facebook的請求:Facebook的刪除請求
DELETE https://graph.facebook.com/[<REQUEST_OBJECT_ID>_<USER_ID>]?access_token=[USER or APP ACCESS TOKEN]
像這樣:
DeleteMethod method = new DeleteMethod("https://graph.facebook.com/requestId_userId?access_token=token");
HttpClient httpClient = new HttpClient();
httpClient.executeMethod(method);
服務器發送我的狀態碼400,但是當我打開瀏覽器FB此鏈接返回有關請求的信息。我做錯了什麼?
你得到與400錯誤消息? –
只有400 - 壞請求 – Sanjke