I'm having a tough time finding any good documentation for the FBConnect iPhone SDK. I have the SDK set up to get the permissions from the user but making a simple post is escaping me. All I can find is documentation for the PHP web SDK.

Can anybody point me to some documentation for the iPhone sdk or let me know how I can post to a users wall using the latest graph FBConnect SDK?

Thanks!

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

Have you looked at DemoApp under the sample directory in facebook-ios-sdk? There's a publishStream method that might help.

Or, you can use

- (void)requestWithGraphPath:(NSString *)graphPath
                   andParams:(NSMutableDictionary *)params
               andHttpMethod:(NSString *)httpMethod
                 andDelegate:(id <FBRequestDelegate>)delegate;

like this:

[_facebook requestWithGraphPath:@"[user_id]/feed" 
                      andParams:[NSMutableDictionary dictionaryWithObject:@"test wall post" forKey:@"message"]
                  andHttpMethod:@"POST"
                    andDelegate:self];

to post a comment to [user_id]'s wall.

link|improve this answer
Hi and thanks for the reply. I'm getting facebookErrDomain error 10000 when I try to post this feed. Have you seen this before? I'm also curious if this will require a dialog to be presented to the user. Thanks again! – jmurphy Dec 20 '10 at 15:57
I was having a login issue which was in turn causing my domain error when trying to post. Your answer worked correctly. Thanks! – jmurphy Dec 21 '10 at 16:39
1  
Awesome! And I see you figured out the other problem too. Way to go :) – donkim Dec 21 '10 at 16:44
Hi all.. i have one doubt on last Mr. donkim's post. You use '_facebook' what is this?? I my application i have 'FbGraph and SBJSON' folder, so i could not access your code. I want to feet post by using FbGraph, any solution for my problem??? Thanks in advance!!! – Yuvaraj.M Mar 8 '11 at 7:42
@Yuvaraj.M : You can follow Facebook's official tutorial. I guess you are using other tutorials on the Internet, right? – Shivan Raptor Feb 6 at 9:26
feedback

U ckeck this , its in detail:

NSMutableDictionary* params1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                    appId, @"api_key",
                                    @"Please join me...", @"message",
                                      @"https://www.mybantu.com", @"link",
                                    @"https:/www.mybantu.com/myphoto.png", @"picture",
                                    @"my profile", @"name",
                                    @"hi to all", @"description",
                                      //    @"100001309042820", @"target_id",
                                    nil];
    [facebook requestWithGraphPath:@"[friend_ID]/feed" andParams:params1 andHttpMethod:@"POST" andDelegate:self];

WE cannot use facebook profile or photo here, Get from other sites or ur own site profile.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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