Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using the Javascript SDK and wanted to upload an image and tag friends at the same time. Yesterday i got everything working, uploading an image and specifying tags for 9 friends, but when i tried it again today it was broken, the image would still upload and i also get an id and post_id in the response, but tags wouldn't be added anymore. I stripped out all of the unnecessary code and boiled it down to the very basics (see below), without success. However making a second call to /photoId/tags with to/x/y parameters still works. so my now my questions:

  1. did anything in the API change ?
  2. did my appId or url get disabled for this kind of tagging ? If so, how can i check/restore ?
  3. can anyone confirm this is still working ?

    FB.api("/me/photos","post",{url:"http://fakeurl.com/image.jpg",tags:[{tag_uid:"23fake42425223",x:50,y:50}]},function(response) {console.log(response);});    
    

i'm pretty sure the code is alright (correct me if i'm wrong), because when i change any of the parameters i'll get an error response (e.g. i changed the "tag_uid" to "to" results in "(#100) Invalid keys "to... found in param "tags"."). i also tried tag_text, which also uploads the image, but no tag seen at all. Thanks a lot!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.