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.

According to Facebook Developer Roadmap (https://developers.facebook.com/roadmap/), they are saying that we won't be able to post to a Friend Wall except using the Feed Dialog, but feed dialog is deprecated on iOS SDK 3.1

Which is the better way to go in my case? I need a User to select from his friend list, and then post a link to their wall.

Thanks in advance

share|improve this question

2 Answers

Have a look at my question Post to Friends wall on Facebook failed with Social Framework in iOS 6

I end up by sending invitation to facebook friends messages using his facebook username (username@facebook.com) through email

share|improve this answer
gonna try it and i let you know! thanks – hardlinkin Feb 6 at 8:11

You can use feed dialog. I think FB is going to have to keep this around. My apps are using them fine right now.

https://developers.facebook.com/docs/howtos/feed-dialog-using-ios-sdk/

  • (IBAction)publishButtonAction:(id)sender { // Put together the dialog parameters NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"Facebook SDK for iOS", @"name", @"Build great social apps and get more installs.", @"caption", @"The Facebook SDK for iOS makes it easier and faster to develop Facebook integrated iOS apps.", @"description", @"https://developers.facebook.com/ios", @"link", @"https://raw.github.com/fbsamples/ios-3.x-howtos/master/Images/iossdk_logo.png", @"picture", nil];

    // Invoke the dialog [self.facebook dialog:@"feed" andParams:params andDelegate:self]; }

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.