I want to post something in the users friends wall.

I use this to post into the user wall

SBJSON *jsonWriter = [[SBJSON new] autorelease];

    NSDictionary* actionLinks = [NSArray arrayWithObjects:[NSDictionary dictionaryWithObjectsAndKeys:
                                                           @"Always Running",@"text",@"http://itsti.me/",@"href", nil], nil];

    NSString *actionLinksStr = [jsonWriter stringWithObject:actionLinks];
    NSDictionary* attachment = [NSDictionary dictionaryWithObjectsAndKeys:
                                @"a long run", @"name",
                                @"The Facebook Running app", @"caption",
                                @"it is fun", @"description",
                                @"http://itsti.me/", @"href", nil];
    NSString *attachmentStr = [jsonWriter stringWithObject:attachment];
    NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   @"Share on Facebook",  @"user_message_prompt",
                                   actionLinksStr, @"action_links",
                                   attachmentStr, @"attachment",nil];

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

But i need to post in my friends wall. how can i do this

In this post they have mentioned about targetId do i have to do something with that.

link|improve this question

Still no answer :( Someone ans my question.. – iPrabu Jan 19 '11 at 14:05
23 days gone and no answer... – iPrabu Jan 30 '11 at 11:06
feedback

1 Answer

up vote 1 down vote accepted

Have you tried using,

[facebook requestWithGraphPath:@"[friend_ID]/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
link|improve this answer
Each profile in fb has an id like this 1405135278. You should set that as target_id. – KingofBliss Feb 12 '11 at 17:14
I tried that man.. Still No use.. it post into my profile only... – iPrabu Feb 14 '11 at 11:47
Did you check your FB account? i posted to ur wall using this code only ;) – KingofBliss Feb 14 '11 at 12:46
Cool man.. It worked... – iPrabu Feb 14 '11 at 18:15
Guys... i want that through my app when i logging to my account and then clicking on any button it should paste that post to my friend. But i wonder how can i take someone's facebook account id through my app and post on their walls. Can you help me plz... :) – mAc Nov 28 '11 at 7:48
feedback

Your Answer

 
or
required, but never shown

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