Unexpected error when attempting to delete a facebook story
Posted
by
blueberryfields
on Stack Overflow
See other posts from Stack Overflow
or by blueberryfields
Published on 2012-07-03T02:25:05Z
Indexed on
2012/07/03
3:15 UTC
Read the original article
Hit count: 173
facebook-graph-api
I'm attempting to delete a facebook story/action, like so:
curl -F 'access_token=[valid_token]' -X DELETE https://graph.facebook.com/[action_id]
Facebook is responding with an internal server error, like so:
{"error":
{"message":"An unexpected error has occurred. Please retry your request later.",
"type":"OAuthException","code":2}}
Is this an error caused by my actions, or something on Facebook's end?
Additional info
When I run
curl -X GET https://graph.facebook.com/[action_id]?access_token=[valid_token]
the result is "false"
© Stack Overflow or respective owner