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 attempting to upload a photo to Facebook via the Graph API on a test user account for my app. With just the url, link, name parameters present, the upload works fine returning a valid photo id.

However, if I use the additional tags parameter, I end up with the following error returned:

{
  "error": {
    "message": "(#100) param tags must be an array.", 
    "type": "OAuthException", 
    "code": 100
  }
}

I've tried to provide the value for tags in almost every possible way I can think of, as I know the Graph API isn't straightforward (even the parameter url which is used to upload a photo from a URL isn't listed under the photo Graph API method);

A single user id

tags=100003919104407

Multiple CS'd user ids

tags=100003919104407,100003919104408,100003919104409

Array with ids not as integers

tags=[100003919104407, 100003919104404,100003919104405]

Array with ids as strings

tags=["100003919104407", "100003919104404","100003919104405"]

Array containing objects, as per the Facebook Graph API documentation

tags=[{"id":"100003919104407"},{"id":"100003919104404"},{"id":"100003919104405"}]

If someone could tell me the right format/another parameter through which to pass user ids in order to have them tagged in a photo, I'd be very grateful.

share|improve this question
Guys you can try this [solution][1] [1]: stackoverflow.com/questions/10742120/… – Raquibul Islam Jun 5 '12 at 12:09

2 Answers

up vote 0 down vote accepted

Try this

It should be in this format

[{"to":"100003919104407","x":0,"y":0},  
{"to":"100003919104408","x":10,"y":10},  
{"to":"100003919104409","x":20,"y":20}] 

or

[{"tag_uid":"100003919104407","x":0,"y":0},
{"tag_uid":"100003919104408","x":10,"y":10},
{"tag_uid":"100003919104409","x":20,"y":20}]
share|improve this answer
The second seems to work, (returns true) but when I check the photo object for a tags connection, none exist. – Avicinnian Jun 5 '12 at 15:59
Try 'id' instead of tag_uid. earlier I had used tag_uid. but doc specifying id somewhere and to somewhere. so you have to try that too. – Venu Jun 5 '12 at 17:43
Did u check the comment u got for question. It seems u can only tag to existing photo. Please try that. – Venu Jun 5 '12 at 17:59
All this was tried on an existing photo id – Avicinnian Jun 6 '12 at 12:06
Tried id as specified by doc, didn't work either (that was my original point of call). I do know however, that despite the tags not being shown with a GET request to http://graph.facebook.com/<[photo_id]>, the subject of the tag did have the photo show up in "Photos of me". I'm wondering if maybe the fact that these were test accounts and the Graph API Explorer was being used could have an effect? – Avicinnian Jun 6 '12 at 12:13
show 2 more comments

Where did you get your information from? Have you check the tags section?

Create

You can create a tag on the photo by issuing an HTTP POST request to the tags connection, PHOTO_ID/tags.

Note: This feature is intended to help users tag their friends in real photos. You should not use this feature to encourage users to tag their friends if their friends are not actually in that photo, or to tag friends in composite photos. If your app is found to be encouraging this behavior, your usage of this feature may be disabled.

You can specify which user to tag using two methods: in the URL path as PHOTO_ID/tags/USER_ID, or in a URL parameter as PHOTO_ID/tags?to=USER_ID. To add several tags at once, you can specify a tags property which contains an array of tags like so PHOTO_ID/tags?tags=[{"id":"1234"}, {"id":"12345"}]. Currently, you cannot tag a Page in a photo using this API.

There's also an example.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.