Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

up vote 0 down vote accepted

Can anyone suggest me how to fetch privacy list of a user through facebook-graph-api or FQL?

You mean their default privacy settings they have in place for their wall posts etc.?

Can’t be done.

I need to poll questions on user's facebook-wall using my app giving him option to limit visibility of the questions on UI.

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.

share|improve this answer
Thanks for replying CBroe. I know that user can overwrite it anytime. But what I basically want is to show the list which comes to UI(next to POST button) when user manually asks question on his wall. Can you help me in it? Any help will be appreciated – Aakash Gupta Oct 5 '12 at 9:16
Again, there is no way of doing that with an app via the API. Only the dialogs that Facebook provides to be called by an app do partially have that feature – but there is no dialog for posting questions yet. – CBroe Oct 5 '12 at 9:21
Okay. Thanks for the help. I will let you know if I will find something remarkable in it. – Aakash Gupta Oct 5 '12 at 9:43

You can retrieve a user's default visibility setting for posts made from your app using the following FQL query [1]:

SELECT name, value, description, allow, deny, networks, friends FROM privacy_setting WHERE name = "default_stream_privacy" 

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]:

SELECT value, description FROM privacy WHERE id = 10151177771869615
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.