I am trying to delete a cover photo of a page via open graph.
Is this even possible?
The cover was set with:
https://graph.facebook.com/PAGE_ID?cover=IMAGE_ID&method=POST&access_token=ACCESS_TOKEN&no_feed_story=true
And deleted with:
https://graph.facebook.com/IMAGE_ID?method=DELETE&access_token=ACCESS_TOKEN
You dont have the permission to do so:
{
"error": {
"message": "(#200) Permissions error",
"type": "OAuthException",
"code": 200
}
}
When I set the cover, Facebook saves a new photo into the cover-album of the page. This cover photo is not created by the app.
So it looks like I am unable to delete the cover photos of a page. Because you can only delete photos that were created by the same app.
Can someone verify this?