-1

I need list of users which are using my Facebook App. So I am sending below Request.

new Request( session, "/me/friends", null, HttpMethod.GET,
                new Request.Callback() {
            public void onCompleted(Response response) {
...});

Fo that which permissions I need to set in facebook app?

According to Graph API user_friends permission is required. But I cant find this permission anywhere in my app.

I was using "read_friendlists" permission but FB rejected it.

Reply from Facebook Review team : read_friendlists Android It looks like you're trying to use read_friendlists for something it cannot do. This permission doesn't show you a list of a person's friends. Read_friendlists gives access to the names of custom lists a person has created to organize their friends. It will not help you invite a person's friends to use your app. To learn more about how to invite friends to an app, please see our FAQs.

Please remove "read_friendlists" from your submission. Learn more here.

Roman C
  • 49,761
  • 33
  • 66
  • 176
Kalpesh
  • 89
  • 1
  • 11

1 Answers1

1

The user_friends permission is the right one to use. Keep in mind that /me/friends will only return the friends which are using the same app, not all friends.

See

Community
  • 1
  • 1
Tobi
  • 31,405
  • 8
  • 58
  • 90