Skip to content

Instantly share code, notes, and snippets.

@wwwins
Created May 23, 2012 07:28
Show Gist options
  • Save wwwins/2773692 to your computer and use it in GitHub Desktop.
Save wwwins/2773692 to your computer and use it in GitHub Desktop.
tag people in a facebook photo
Facebook.api("me/photos", function(result:Object, fail:Object):void
{
if (result) {
trace("success");
// blah blah blah...
}
},
{
image:bmp, message:"your message", fileName:'card.jpg', tags:JSON.encode([ { "tag_uid":_friendId, "x":0, "y":0 } ])
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment