Dot
Dot

Reputation: 439

Can't delete status with Facebook app

$ curl -X DELETE "https://graph.facebook.com/637556776_241445419214379?access_token={token}"

{"error":{"type":"OAuthException","message":"(#200) This post wasn't created by the application"}}

The access token is freshly generated, and has all the permissions assigned.

Upvotes: 1

Views: 2802

Answers (2)

Dot
Dot

Reputation: 439

https://developers.facebook.com/docs/reference/rest/stream.remove/ :

"your application may only remove posts that were created through it"

The legacy API's documentation specifies this; Its not really clear in Graph API's documentation.

Upvotes: 1

Christophe Henner
Christophe Henner

Reputation: 24

This is normal, you can't have an application editing a user status : https://developers.facebook.com/docs/reference/api/status/

Upvotes: 0

Related Questions