Getting the privacy setting of a status message?

喜欢而已 提交于 2019-12-02 07:02:39

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!