Created
May 23, 2012 07:28
-
-
Save wwwins/2773692 to your computer and use it in GitHub Desktop.
tag people in a facebook photo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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