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 just saw it is working for others. I dont know whether it is working to everyone, or just working to few people.

My coding is not suddenly working for the last two days. It is PHP graph api

$facebook->api('/me/photos?access_token='.$access_token, 'post', $arguments);

This is how it is uploaded. Nothing was changed. It was working fine. It is all not working for the last two days.

Error is

OAuthException: (#100) Cannot specify user tags without a place tag

$arguments is an array which contains the image, tags (which is also an array) and message

share|improve this question
Please show what you're passing in the $arguments data. I guess you're trying to tag people in the image, but you're not specifying the x,y coordinates for the tags (within the picture) – scibuff Mar 8 '12 at 13:50
Please work on your accept rate. You have some previous questions that you've acknowledged that the person helped you -- help them by marking their answer as the solution. – jprofitt Mar 8 '12 at 13:54
@jprofitt i didnt get answers to my previous questions. – Kamini Mar 8 '12 at 13:58
@scibuff array('tag_uid'=>$tag_id, 'x'=>$x,'y'=>$y); I am passing x and y coordinate. I promise it was working and i saw the tags. last two days it is not working – Kamini Mar 8 '12 at 13:59
1  
These questions at the very least have acceptable answers. "The answer you wanted" and "the correct answer" aren't always the same thing, but that doesn't mean you shouldn't still accept it. – jprofitt Mar 8 '12 at 14:03
show 5 more comments

3 Answers

up vote 1 down vote accepted

I have the same problem! The same code, but don't work for the past 24 hours.

I use graph api via Action Script. I HTTP POST a request with a parameter Object, which contains tag_uid, x, and y. Bad request just as following:

{
   "error": {
      "message": "(#100) Cannot specify user tags without a place tag",
      "type": "OAuthException",
      "code": 100
   }
}

The API didn't recognize the x parameter and y parameters. So, I tried to use the api method /photoID/tags. This way works without specifying the x and y parameters, if you do specify them, it won't work.

share|improve this answer
I haven't used photoid/tag method. How will it tag user in the exact position if we didn't send the x and y? Can you share any example for this method? – Kamini Mar 8 '12 at 16:53
After wasting two, three days, you save the rest of the day. Thanks a lot. – Kamini Mar 8 '12 at 17:29

https://developers.facebook.com/docs/reference/api/user/#posts

tags

Comma-separated list of Facebook IDs of people tagged in this Post. For example: 1207059,701732. This field is returned as the with_tags field when the Post is read. NOTE: You cannot specify this field without also specifying a place.

So I think you should also specify the place (page Id of the location associated with the post) in order to put tags.

share|improve this answer

You have to add place value to the params. place value is page_id in facebook.

sample actionscript code is as following

tagArr = '[{"tag_uid":"' + String(userVO.uid) + '", "x":"1", "y":"1"}]';
var params:Object = {access_token:userVO.accessToken, place:"123456789", tags:tagArr, image:bitmap, message:msg, fileName:'FILE_NAME'};
Facebook.api('/'+userVO.uid+'/photos', onCompleteHandler, params);
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.