我在我的Android應用程序集成了Facebook。在應用程序中,我想獲取發送給我的應用程序的好友請求列表,我的代碼在java.I中花費了很多時間在搜索提前顯示好友請求列表
Q
顯示好友請求列表
-1
A
回答
1
String uri ="https://graph.facebook.com/me/friendrequests";
HttpGet get = new HttpGet(uri);
HttpClient client = new DefaultHttpClient();
HttpResponse response = client.execute(get);
HttpEntity resEntityGet = responseGet.getEntity();
if (resEntityGet != null) {
Log.i("GET ",EntityUtils.toString(resEntityGet));
}
} catch (Exception e) {
e.printStackTrace();
}
將返回某些信息,如from
,to
,created_time
等 這裏的更多信息https://developers.facebook.com/docs/reference/api/user/#friendrequests
編輯它還說,它作爲一個「對象數組」所以我asssuming了一個JSON格式。按照以下方式使用JSONTokener
和JSONObject
進行解析。插入此行後HttpResponse response = client.execute(get);
BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));
StringBuilder builder=new StringBuilder();
for(String line=null;(line = reader.readLine()) != null;){
builder.append(line).append("\n");
}
JSONTokener jsonTokener=new JSONTokener(builder.toString());
JSONObject finalJson=new JSONObject(jsonTokener)
0
一個solution.thanks也許THIS將幫助您
例子
發送到當前會話的用戶所有未決的朋友請求(試試這個 查詢)
SELECT uid_from,時間,消息FROM friend_request WHERE uid_to =我()
由當前會話的用戶發送到另一個 用戶
SELECT時間掛起的朋友請求,消息FROM friend_request WHERE uid_from =我()和 uid_to = 「204686」
相關問題
- 1. 顯示好友請求
- 2. Facebook SDK好友列表請求
- 3. Facebook好友請求
- 4. 顯示所有好友列表
- 5. Facebook好友邀請請求不顯示在沒有顯示的信息
- 6. 列出所有的Facebook好友請求
- 7. 友好的URL用GET請求表單
- 8. 如何根據好友請求的狀態使用MySQL獲取好友列表?
- 9. XMPP接受好友請求
- 10. 刪除好友請求?
- 11. drupal facebook好友請求
- 12. 如何讓Facebook好友請求框在canvas頁面中顯示?
- 13. Facebook好友列表
- 14. Facebook SDK好友請求重定向?
- 15. 接受好友請求通過facebook API
- 16. Facebook圖api好友請求發送
- 17. Facebook API自動接受好友請求
- 18. winform facebook app接受好友請求
- 19. 在Skype4Com VB.NET發送好友請求
- 20. Facebook上邀請朋友和市場接受好友列表
- 21. Facebook在iOS/API電話請求一個好友請求
- 22. 從friend_request FQL表中檢索已發送的好友請求列表
- 23. 朋友請求和朋友列表與AWS Cognito
- 24. 用戶好友在Facebook上顯示空列表Sdk Graph Api v2
- 25. 顯示來自Facebook用戶的隨機好友列表
- 26. 在django中顯示json文本作爲友好列表管理
- 27. Facebook應用程序在jsp中顯示好友列表
- 28. 使用ios xmpp框架顯示在線好友列表問題
- 29. 正在檢索Facebook的好友列表並在Tableview中顯示
- 30. 如何在首頁顯示好友列表,使用php my sql?