I am working on a simple app using the Facebook Graph API where I can retrieve the comments on a post and delete those comments. I have the following permissions set up: user_posts and publish_actions.
When I try to delete a Facebook comment on one of my posts using my app, I get the following error: "Users can only delete their own comments published by the same app." Is there a way around this? My app can successfully delete the comments that originate from my app, but I want to delete comments that were not posted by my app.
Thanks
Related
I am working on a simple app using the Facebook Graph API where I can retrieve the comments on a post and delete those comments.
I am working on a simple app using the Facebook Graph API where I can retrieve the comments on a post and delete those comments. I have the following permissions set up: user_posts and publish_actions.
When I try to delete a Facebook comment on one of my posts using my app, I get the following error: "Users can only delete their own comments published by the same app." Is there a way around this?
Is there a way around this?
deletion works in some cases and not in others, which is very confusing.
Thanks
I want my site users to share a custom post to their Facebook timelines using Feed Dialog. But I am stuck with permission issues. The post_id is not coming after the user successfully shared the post. The post_id requires the app to have publish_actions granted, as per the Facebook doc (https://developers.facebook.com/docs/sharing/reference/feed-dialog).
Snapshot of the feed-dialog doc
But when I tried to give the permission in the App Review section by adding publish_actions, it says that my app should not be using publish_actions to using Feed Dialog feature. Both of the documents are contradicts each other. I am confused.
Snapshot shows where it denies to use publish_actions permission for Feed Dialog
(https://developers.facebook.com/docs/facebook-login/permissions/)
Please guide me if I am missing something at this point. Thank you in advance.
I would like to retrieve last actions (likes, reactions, comments) made by an user (me) on Facebook.
So the question is simple: is it possible to do this using graph.facebook.com?
I've searched in StackOverflow and tried with Graph API Explorer on Facebook but without success.
It is not possible, you canĀ“t access the Activity Log with the API.
At first I used my app (on facebook canvas) with publish_stream permission to create a post using Graph API, it was success, the post appeared both in my news feed and my timeline. However, when I called Graph API to delete it, using HTTP DELETE https://graph.facebook.com/{post-id}/?access_token={my-access-token}. It returned true, mean that the post is deleted successfully. But it's only deleted on my timeline and still appear in news feed, i can still comment and like it.
Please, tell me what's wrong with it? In the document, they (facebook) didn't mention this.
How can I delete a post in news feed if my app created this?
I'm developing a chrome extension for Facebook, what I want is to get the latest wall posts of a page using the extension. For e.g. If a user posts on a Facebook, I can get alert from my extension of the new posts (not all posts...only the new/latest posts uploaded by the user),
Can i do it using the Facebook api? Because I can get all posts using the api, but I want the latest/new post. Please help
Check out the Facebook Realtime Updates feature here:
https://developers.facebook.com/docs/reference/api/realtime/
This feature will inform you when a user has new posts, rather than requiring you to constantly poll the Facebook API to check for new posts.