-2

I`m developing android application.I get requests friends from me/friendrequests . How can i Confirm request to friend ???

asyncRanFace.request("me/friendrequests",new RequestListener(){

                            public void onComplete(String res, Object state) {
                                try{
                                    JSONObject jsonRequest = Util.parseJson(res);
                                    JSONArray friendsRequestArray =  jsonRequest.getJSONArray("data");                                   
                                    JSONObject friendRequest;
                                    String fRId=null,fRNm= null;
                                    for(int i =0 ; i<friendsRequestArray.length(); i++){
                                        friendRequest= friendsRequestArray.getJSONObject(i);

                                        JSONObject temp= friendRequest.getJSONObject("from");

                                        fRId = temp.getString("id");
                                        fRNm= temp.getString("name");
                                        myRequestFriendsMap.put(fRId, fRNm);

                                    }


                        }
4

1 回答 1

0

您不能“接受”用户的好友请求,您只能使用 API 查看未完成的好友请求是什么。这是一种安全措施,因此恶意应用程序不会自动添加不需要的朋友。

http://developers.facebook.com/docs/reference/api/user/#friendrequests

GET允许打电话。POSTDELETE调用,分别接受或删除,是不允许的。

于 2012-05-23T09:12:51.040 回答