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.

How to let someone post on his/her friends' walls via facebook API, similar to instagr.am iPhone application lets you post on your own wall?

  • How to show a list of friends and allow selecting them?
  • How to post both text, image and link at once?

enter image description here

share|improve this question

2 Answers

As it happens, Facebook has an iOS SDK available, and instructions on how to use that to post feed items (either with an interactive dialog, or with their Graph API).

share|improve this answer
1  
Although I'm not sure, I guess feeds dialog will let you post to your own wall only. – exalted Mar 13 '11 at 0:09

i did this way. it works fine.. u can post for multiple frnds as well.

NSMutableDictionary* params1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:
<appId>, @"api_key",
@"Happy Birthday....", @"message",
@"http://www.youtube.com/watch?v=wFh-rX_Sfhs", @"link",
@"http://www.99desi.com/wp-content/uploads/2011/03/Happy-Birthday.jpg", @"picture",
@"Many More Happy returns Of the Day...", @"name",
@" Believing hear, what you deserve to hear..", @"description",nil];

[facebook requestWithGraphPath:@"<frnd-ID>/feed" andParams:params1 andHttpMethod:@"POST" andDelegate:self];

u can iterate the above step to post same to multi friends.

hope it helps you...

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.