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 am trying to tag some of my friends in my wall post and I am sending the following parameters but this posts to my wall the FB ids I provide do not get attached to the post...

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:

                               @"Test 2  ",@"message",
                               @"100004311843201 , 1039844409", @"to",
                               @"http://www.google.com", @"link",
                               @"Test", @"name",
                               nil];

[self.appDelegate.facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];

Any help is appreciated...

share|improve this question
Why are you posting same question twice?? You already have asked the same question at stackoverflow.com/questions/13985466/… – Akshay Shah Dec 21 '12 at 8:54
@AkshayShah that was regarding permissions.. – Ankit Srivastava Dec 21 '12 at 8:56
You had mentioned the same thing there too... It would be better to edit that question, instead of creating another question.. – Akshay Shah Dec 21 '12 at 8:58
@AkshayShah thanks will keep that in mind. – Ankit Srivastava Dec 21 '12 at 8:59

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.