I am trying to create an app that assists users in removing unwanted tags. I've heard a lot of complaining that FB no longer allows public access to the deletion of pictures... Is the same thing going on for tags?
I get {"error":{"type":"OAuthException","message":"(#3) Application does not have the capability to make this API call."}} when I try to do the deletion via
https://graph.facebook.com/some_photo_id/tags/user_id?access_token=a_valid_access_token&callback=whatever&method=delete&pretty=0&sdk=joey
I get the same error if I try an AJAX DELETE request or use FB.api('/pid/tags/uid', 'delete', function(){})
I have enabled the permissions: user_photos, friends_photos, publish_stream, publish_actions, user_status. Did I forget a certain permission?
I would really appreciate assistance with this issue.
More importantly, I need someone to tell me ASAP if it is NOT possible to do what I am trying to do.