There are two kinds of privacy.
1. Default privacy setting

2. Per-app privacy. Set when user doing authentication or modify it at privacy setting page
and

According to https://developers.facebook.com/docs/reference/fql/privacy_setting/, we could get the default privacy by FQL.
In this post https://developers.facebook.com/blog/post/543/ said that users could modify per-app privacy for every apps in “Posts on your behalf: Who can see posts this app makes for you on your Facebook timeline?”
And https://developers.facebook.com/blog/post/586/ said that we could retrieve app specific privacy settings for users. “Via the privacy_setting table table, apps can retrieve the privacy settings that a user has set for the app.”
But it did say how to retrieve privacy settings for a app rather than default privacy setting.
Before last year, maybe following discusses work correctly. But now I think that they were outdated:
- How to determine the 'posts on my behalf' setting for a facebook application via the API?
- Graph API end point to get the new "per-app post privacy" controls
- Is there a way to know if a user changes the Default "Activity Privacy" for your FB app
Currently, there are not only default privacy setting but also per-app privacy setting that user could control them.
If we use
SELECT name, value, description, allow, deny, networks, friends
FROM privacy_setting
WHERE name = 'default_stream_privacy'
to retrieve privacy, the result is the same with 1. Default privacy setting.
And my question is, how to get the setting value of 2. Per-app privacy?
In FQL query above, is there any keyword could be put in name column rather than 'default_stream_privacy'?
It will influence the privacy of all new status/album/photo/video posts that were posted by app with API key. And I need to show privacy selections those are stricter than app privacy setting in customized UI.
Thanks for replying in advance.