Does anyone know if it\'s possible to query the privacy settings for status updates? I know you can get them for photo albums, but for my application it would be useful to be ab
If it's a user's own status updates (i.e the person who's using your app) this is easily obtained, there's a privacy
field on the Post objects, and example from my /feed connection is:
"privacy": {
"description": "Friends; Except: Restricted",
"value": "CUSTOM",
"friends": "ALL_FRIENDS",
"deny": "< ID of my restricted list >"
}
If it's on a friend of the current user's wall i'm not sure if/how to retrieve the same data