Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my app my intention is to get some interests of a friend like music, books, tv. This information is public. For this I think I don't need to send a permission. Based on facebook (poor)documentation, mainly this links: Field Expansion to get friend interest I only need to pass friend ID in the expanded friends field. Doing some tests on GraphExplorer I see it creates the following query to get movies form some friend:

MY_ID?fields=friends.uid(FRIEND_ID).fields(movies)

I use this and execute execute this code on a Request.newMyFriendRequest asynchronously:

Session activeSession = Session.getActiveSession();
    if(activeSession.getState().isOpened()){
        Request request = Request.newMyFriendsRequest(activeSession, 
            new GraphUserListCallback(){
                @Override
                public void onCompleted(List<GraphUser> users, Response response){
                    GraphUser user = users.get(0);
                    JSONObject friendLikes = user.getInnerJSONObject();
                    try {
                        JSONArray data = friendLikes.getJSONObject("friends").getJSONArray("data");
                        Log.i("JSON", friendLikes.toString());
                        addInterests(data, 0);
                    } catch (JSONException e) {
                        e.printStackTrace();
                    }
                }
        });
        Bundle bundle = new Bundle();
        bundle.putString("fields", "friends.uid("+friendID+").fields(movies)");
        request.setParameters(bundle);
        request.executeAsync();

All times I execute this code I receive the following error from JSON: W/System.err(694): org.json.JSONException: No value for friends. If this isn't the way to get friend interests using GraphAPI, what do I need to do to get these values?

share|improve this question

1 Answer

[EDIT] Solved posting friends_likes permission on Login. Permission is not sended inside Request. I modified a bit my solution. If anyone is interested:

String fqlQuery = "SELECT music, books, movies FROM user where uid ="+friendID;
        Bundle bundle = new Bundle();
        bundle.putString("q", fqlQuery);
        Request request = new Request(activeSession, "/fql", bundle, HttpMethod.GET, 
            new Request.Callback() {
                @Override
                public void onCompleted(Response response) {
                    // TODO Auto-generated method stub
                    Log.i("INFO", response.toString());
                }
            });
        Request.executeBatchAsync(request);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.