2

我很难为 FBConnect iPhone SDK 找到任何好的文档。我设置了 SDK 以从用户那里获取权限,但发布一个简单的帖子让我无法理解。我能找到的只是 PHP Web SDK 的文档。

任何人都可以向我指出一些 iPhone SDK 的文档,或者让我知道如何使用最新的图形 FBConnect SDK 发布到用户墙上吗?

谢谢!

4

2 回答 2

11

你看过sample目录下的DemoAppfacebook-ios-sdk吗?有一种publishStream方法可能会有所帮助。

或者,您可以使用

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

像这样:

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

[user_id]在的墙上发表评论。

于 2010-12-20T06:57:30.130 回答
1

你检查一下,它的详细信息:

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];

我们不能在这里使用 facebook 个人资料或照片,从其他网站或您自己的网站个人资料获取。

于 2010-12-31T07:11:44.590 回答