Can anyone suggest me how to fetch privacy list of a user through facebook-graph-api or FQL? I need to poll questions on user's facebook-wall using my app giving him option to limit visibility of the questions on UI.
|
|
You mean their default privacy settings they have in place for their wall posts etc.? Can’t be done.
The user themselves can limit the visibility of anything your app will post on their behalf, in the Auth dialog when first connecting to your app, and then afterwards in their account settings. There is no parameter an app could use to set privacy options on-the-fly while posting a new question. You could set the Default Activity Privacy in your app’s settings to only me – but, as said, the user can overwrite this any time they like. |
|||||||
|
|
You can retrieve a user's default visibility setting for posts made from your app using the following FQL query [1]:
Some objects (Albums for sure, possibly timeline posts? [undocumented]...) allow you to specify visibility settings at the time of creation PROVIDED THAT the visibility settings do not exceed the scope of the default visibility setting. The privacy settings for a specific object (once created) can be retrieved using the FQL query [2]:
|
|||
|
|