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.