Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I had a problem when I try to delete a photo uploaded by the PHP SDK, the error is: Permissions error thrown in base_facebook.php on line 1237

The code is:

$facebook->setAccessToken(USERACCESSTOKEN);
$facebook->api("/PHOTOID?access_token=PAGEACCESSTOKEN","DELETE");
share|improve this question

2 Answers

Facebook does not allow deletion of photos through third party apps. Its a security restriction.

share|improve this answer
Are you sure of that? – Zac Oct 11 '12 at 9:26
I cannot access facebook developer site from office else I would have searched the link for you. But I can assure you I have tried hard deleting contents from my app through all workarounds but It simply does not work now. They don't allow deletion of content , you can only create it :) – Subir Kumar Sao Oct 11 '12 at 9:28
But i can delete post... o.O It's a very strange thing. – Zac Oct 11 '12 at 9:31
Mmm, i have an idea... Can I delete albums instead? – Zac Oct 11 '12 at 9:33

According to Facebook API documentation you can delete photos posted from your app

by issuing an HTTP DELETE request to PROFILE_ID/photos with the user access token or app access_token.

share|improve this answer
Can you give me the PHP code for this? Because i don't know what is an HTTP DELETE REQUEST. Sorry. – Zac Oct 11 '12 at 9:54
it's the same as you did in your code ($facebook->api....), you'll just have to add "profile_id/photos" instead of "photoId" the only thing i'm not sure about is how to specify photo (if it's even possible), you should probably explore documentation a bit, see if it's mentioned anywhere. – Darvex Oct 11 '12 at 9:57
So, like this i think..$facebook->api("/".$PAGEID."/photos?access_token=".$PAGETOKEN,"DELETE"); But in the documentation doesn't speak about PHOTOS ID, so how facebook can understand whick of my photos i want to delete? o.O – Zac Oct 11 '12 at 10:02
I'm afraid i can't answer that, it might be the case when all of the photos, added by your app will be deleted. Like i said, you should probably investigate that some more – Darvex Oct 11 '12 at 10:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.