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 post message on Facebook friends wall using NEWFacebook SDK selecting target_id of friend. Thanks in advance.

share|improve this question

3 Answers

NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:4];
[variables setObject:[NSString stringWithFormat:@"Hi."] forKey:@"message"];
[variables setObject:@"http://icon.png" forKey:@"picture"];       //http://tinyurl.com/45xy4kw
[variables setObject:@"Create post" forKey:@"name"];
[variables setObject:@"Write description." forKey:@"description"];

[_facebook requestWithGraphPath:[NSString stringWithFormat:@"/%@/feed",facebook_user_id] 
                      andParams:variables 
                  andHttpMethod:@"POST"
                    andDelegate:self];
share|improve this answer
Nice Answer, could you tell me one thing, if i wanted to show a picture from my app then how can i modify the code (line no.3) – mAc Nov 28 '11 at 7:39
Whatever picture you want to upload on facebook, You need url of that picture first and replace it with "icon.png"; url. – Jatin Patel Dec 3 '11 at 4:57
If i am having an Image that i have to post which is on my mAcintosh Drive then how could we do that..?i Am asking this actually.. – mAc Dec 5 '11 at 4:15

 NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   @"https://developers.facebook.com/docs/reference/dialogs/",@"link",
                                   @"Facebook Dialogs",@"name",
                                   @"Reference Documentation",@"caption",
                                   @"Using Dialogs to interact with users.",@"description",
                                   @"Facebook Dialogs are so easy!",@"message",
                                   nil];
   // [facebook requestWithGraphPath:@"me/feed" andParams:params andDelegate:self];
    //[facebook requestWithMethodName:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
    [facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];
share|improve this answer

check delegate methodes

-(void)fbDidLogin
{

    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [defaults setObject:[facebook accessToken] forKey:@"FBAccessTokenKey"];
    [defaults setObject:[facebook expirationDate] forKey:@"FBExpirationDateKey"];
    [defaults synchronize];
    [facebook requestWithGraphPath:@"me/picture" andDelegate:self];
    NSLog(@"Login Success with :%@   %@",facebook.accessToken,facebook.expirationDate);

}
-(void)fbDidLogout
{

    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    if([defaults objectForKey:@"FBAccessTokenKey"] && [defaults objectForKey:@"FBExpirationDateKey"])
    {
        [defaults removeObjectForKey:@"FBAccessTokenKey"];
        [defaults removeObjectForKey:@"FBExpirationDateKey"];
        [defaults synchronize];
    }
    NSLog(@"Logout Success");
}
-(void)request:(FBRequest *)request didLoad:(id)result 
{
    if(c==0)
    {
        NSData *data = [NSData dataWithData:(NSData*)result];
        UIImage *profilePic = [[[UIImage alloc] initWithData:data] autorelease];
        image1.image=profilePic;
        [self postWall];

        // NSLog(@"response is %@", result);       
        //  NSString *email =[result objectForKey:@"name"];
        // NSString *userFbId =[result objectForKey:@"id"];
        // NSLog(@"%@",email);
        // NSLog(@"%@",userFbId);
          c=1;
    }
    else
    {
        NSLog(@"%@",result);
        NSLog(@"posted!!") ;
    }
}

-(void)request:(FBRequest *)request didFailWithError:(NSError *)error
{

    NSLog(@"Failed with error: %@", [error localizedDescription]);

}


share|improve this answer
hope it will help? – sam1888 Aug 24 '12 at 4:44
vote up me ,if it! – sam1888 Aug 24 '12 at 4:44

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.