Getting the privacy setting of a status message?

后端 未结 1 986
孤独总比滥情好
孤独总比滥情好 2021-01-26 23:23

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

相关标签:
1条回答
  • 2021-01-26 23:27

    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

    0 讨论(0)
提交回复
热议问题