We use comment moderation, and the graph API is returning everything (including comments that should be hidden). There doesn't appear to be a way to see the status of the comments or filter them out of the results.
相关问题
- facebook “could not retrieve data from URL”
- JDK 11. javax.net.ssl.SSLPeerUnverifiedException:
- To Get the Access Token for facebook api
- Using XPath to access comments a flat hierachy
- Access paging in iOS - previous and next : retriev
相关文章
- Facebook login for group members
- The method FB.api will stop working when called fr
- How to fix 'Facebook has detected MyApp isn
- Can the Pluggable Annotation Processor API retriev
- Insert HTML comments in React
- Old Code in comments [closed]
- Write # in yaml (in the string)
- facebook xid doesn't work
You can use FQL to query only comments that are public. Use the is_private column of comment table to do it (as Ryan says). Let me add some examples:
For example to see only public comments:
Note that you can also make multiple queries to get more info about the user, for example:
I was able to filter out moderated comments by querying the comment table with FQL. The comment table has an is_private field that you can use to filter out the moderated comments.