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.

When the user logs in in facebook on my applicaiton, they are able to access their friend's list, select friends and then press on done. A UIView Appears with a list of the names of the friends picked. I would like the app to post a message on the selected friend's wall, or better send a private message, or a request. How can I do it? I really can't understand, and I can't find any specific example codes. I tried this:

- (void)postwall
{
NSString *string = @"I reached a score of ";
string = [string stringByAppendingString:[NSString stringWithFormat:@"%d", highscore]];
string = [string stringByAppendingString:@" can you beat me?"];

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               //kAppId, @"app_id",
                               @"https://developers.facebook.com/docs/reference/dialogs/", @"link",
                               @"http://fbrell.com/f8.jpg", @"picture",
                               @"Watch Ma Balls", @"name",
                               @"How long can you keep out of the way of ma balls for", @"caption",
                               string, @"description",
                               nil];


[facebook dialog:@"feed" andParams:params andDelegate:self];
}

But [facebook dialog, "Facebook" is giving me problems. When I import the file with ought the SDK I get other errors.

share|improve this question

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.