After spending hours working on it, I want to create a JavaScript routine that can automatically untag me from photos on Facebook. My plan is to run this in the Firebug console so I can untangle myself from all Facebook photos, as there's no way to do this through the regular interface.
I'm looking for some advice to help me make progress on this challenge.
Although I have a few potential methods in mind, I haven't made much headway yet. One approach I've attempted involves using AJAX to create an HTML request directed at the remove_tag URL. Here's what the URL structure looks like:
/ajax/photo_tagging_ajax.php?pid=(PICTURE_ID)&id=(PICTURE_OWNER_ID)&subject=(SOMETHING)&name=(YOUR+NAME)&action=remove
Unfortunately, this method hasn't been successful yet. When I check the HTTP response in Firebug, it looks different from when I manually untag a picture. The request isn't even being sent as a POST.
Just to clarify, I also tried obtaining the "remove tag" anchor element by its ID and then attempting a document.location switcharoo, but that didn't work either. I was unable to trigger a click event on it.
I'm starting to wonder if my goal is feasible or if it's just a dream? (It's almost 4AM)