Android: get facebook friends list

前端 未结 8 1207
青春惊慌失措
青春惊慌失措 2020-11-29 06:53

I am using the Facebook SDK to post messages on walls.

Now I need to fetch the Facebook friends list. Can anybody help me with this?

-- Edit --



        
8条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-29 07:36

    I'm doing something like this is working good....

                        jsonObj = Util.parseJson(facebook.request("me/friends"));
    
                        JSONArray jArray = jsonObj.getJSONArray("data");
                        for(int i=0;i

    Hope it is helpful...

提交回复
热议问题