Hey guys I have been searching stackoverflow and the internet and did no find a working solution for my intention.

I want to call a method with a string as parameter which is then posted to the facebook wall without showing a dialog. Of course only when a valid session is available.

I tried this:

// post message to facebook pinnwall
- (void)postOnWall:(NSString *)message {

    NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: message, @"message",nil];
    [[FBRequest request] call:@"facebook.stream.publish" params:params];
}

Can you guys help me ou with a working method?

Thanks and cheers, doonot

link|improve this question

feedback

3 Answers

as Aby said, you have to look at the Graph API to user FB at its full potential.

simple code:

NSMutableDictionary *fbArguments = [[NSMutableDictionary alloc] init];

NSString *wallPost = @"the super wall post";
NSString *linkURL  = @"http://www.supersite.com";
NSString *imgURL   = @"http://www.supersite.com/image.jpg";

[fbArguments setObject:wallPost forKey:@"message"];
[fbArguments setObject:linkURL  forKey:@"link"];
[fbArguments setObject:imgURL   forKey:@"picture"];

[facebook requestWithGraphPath:@"me/feed" 
                    andParams:fbArguments
                andHttpMethod:@"POST"
                  andDelegate:self];
link|improve this answer
:ur s certainly helped me – kingston Aug 16 '11 at 12:48
feedback

Posted to Facebook Wall u should go through JSON

check out this delgates

 - (void)postToWall {

FBStreamDialog *dialog =[[[FBStreamDialog alloc]init ]autorelease];

dialog.userMessagePrompt = @"Whats on your Mind about this Articles...";
dialog.attachment = [NSString stringWithFormat:@"{\"name\":\"The Black Sheep: %@ Specials for %@, %@ \",\"href\":\"http://%@/\",\"caption\":\" %@ \",\"description\":\"\",\"media\":[{\"type\":\"image\",\"src\":\"%@\",\"href\":\"http://www.raywenderlich.com/\"}]}",
                     [[BarSplArr objectAtIndex:0]objectForKey:@"barname"],day,date,[[BarSplArr objectAtIndex:0]objectForKey:@"barwebsite"],[[BarSplArr objectAtIndex:0]objectForKey:@"drinkspecials"],[[BarSplArr objectAtIndex:0]objectForKey:@"barimage"]];
//dialog.actionLinks = @"[{\"text\":\"See My App here!\",\"href\":\"http://www.facebook.com/developers/apps.php?app_id=178257532217623&ret=2/\"}]";
[dialog show];

}

better u can follow up this way. http://www.raywenderlich.com/77/how-to-post-on-facebook-with-your-iphone-app

superb tutorial

link|improve this answer
thanks for the answer. I know this tutorial and also how to post a message using a dialog. But as I mentioned above, i need to post it without showing a dialog... – dooonot Mar 3 '11 at 18:06
oh k. i wil try and tell – Prasanna Venkatesh Mar 3 '11 at 18:08
do you already have a solution? – dooonot Mar 3 '11 at 19:14
have you found solution for it.. I want same thing.... and also has another issue stackoverflow.com/questions/5308382 – Amit Battan Mar 15 '11 at 7:06
I didn't get an answer yet. Still unsolved. – dooonot Mar 21 '11 at 7:17
feedback

Have you tried using Graph API..
If you like your application to print on the wall without the user interaction like Dialog box you can use the Graph API.. http://developers.facebook.com/docs/reference/api/post/

link|improve this answer
Do you have an example how to send a simple NSString to a users pinwall? – dooonot Mar 25 '11 at 8:33
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"How are you", @"message",nil]; [facebook requestWithGraphPath:@"12312302/feed/" andParams:params andHttpMethod:@"POST" andDelegate:self]; where "12312302" is USERID. – Aby Mar 26 '11 at 17:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.