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.

I'm using the newest Facebook SDK for Android and try to get the albums of a user but only several fields of them. My problem is that the fields param gets ignored and I get all data like likes etc.... What's wrong with my request?

Bundle params = new Bundle();
params.putString("fields", "count,name,id,created_time,updated_time,photos");
Request request = new Request(session, "me/albums", params, HttpMethod.GET, new Request.Callback() {

                @Override
                public void onCompleted(Response response) {
                    // TODO Auto-generated method stub
                    System.out.println(response);
                }
            });
share|improve this question

1 Answer

Requires the user_photos or friend_photos permission

You need that permission!

share|improve this answer
I set that permission – LeonS Feb 28 at 13:41

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.