im trying to delete Facebook OG Like.
First of all, i've created OG action:
POST /me/[app-namespace]:begin
day = [day-page-url]
Then i've created like for it from another user:
POST /me/og.likes
object = [day-page-url]
Finally lets try to delete like from same user that created it (id was returned in previous action):
DELETE 104127963073059
Debug says that this is defenetely like ID.
But result is:
(#10) Application does not have permission for this action
We use permissions:
email,user_birthday,user_location,publish_actions,publish_stream
You can check this via debugger tool:
App ID: 395096416536617 : ODM TEST
User ID: 100004287038925 : Foo
Issued: Unknown
Expires: 1346684400 (in about an hour)
Valid: True
Origin: Unknown
Scopes: create_note email photo_upload publish_actions publish_stream share_item status_update user_birthday user_location video_upload
Check this once more with cURL:
Andrew-MacBook-Pro:onedayofmine macuser$ curl -X DELETE \
> -F 'access_token=AAAFnVo0zuqkBA...0gSDLRbj' \
> https://graph.facebook.com/104156136403575
{"error":{"message":"(#10) Application does not have permission for this action","type":"OAuthException","code":10}}
Maybe i need some additional permissions?
app_namespace:beginjust fine. Are you sure you are using the id of thebeginaction and not the id of the objectday? I am using permspublish_actions,read_stream– Donn Lee Sep 4 '12 at 18:53begin(of user1) and notlike(of user2). – Donn Lee Sep 4 '12 at 19:01likeaction too. Here's the like action created by myuser2: {"data":[{"id":"3639745067497","from":{"name":"John Smith","id":"10XXX648"},...,"application":{"name":"Article Liker","namespace":"article_liker","id":"364XX311647"},"data":{"object":{"id":"343299145761433","url":"http:\/\/example.com\/js_like_show_authtoken.php","type":"article_liker:review","title":"Article Two"}},"type":"og.likes", ... And here I deleted it: curl -X DELETE -F 'access_token=AAAFLVZAuGuN...TZAWlqaIZAx' graph.facebook.com/3639745067497 true – Donn Lee Sep 6 '12 at 1:47