Praveen Govind
Praveen Govind

Reputation: 5627

Facebook request Dialog filter app_non_users not working

I'm using facebook apprequest dialog, and filter friends who already using the app.

 FB.ui({method: 'apprequests',
  appid:'1234567890',
  filters: '['app_non_users']',
 }, requestCallback);

Anybody facing same issue? Please let me know how to fix this issue.

Upvotes: 0

Views: 1036

Answers (2)

Milan Babuškov
Milan Babuškov

Reputation: 61138

I think you need to write:

filters: ['app_non_users']

Upvotes: 0

Andreyco
Andreyco

Reputation: 22872

Actually it works, but it depends on person's privacy settings.

If user has 'Visibility of app' option set to 'only me' value, he/she is listed as 'non app user' even if he/she uses the app.

Simply said, if your friend does not share any info about app with you, you cannot get any info about this.

Seems reasonable to me ;)

Upvotes: 1

Related Questions