FB iOs SDK -- 墙上问题的帖子

发布于 2024-10-18 14:57:12 字数 85 浏览 1 评论 0原文

我能够使用 FBStreamDialog 对象更新状态。情况是我想用以编程方式添加的消息来更新它。有什么方法可以做到这一点吗???

提前致谢

I was able to update status using FBStreamDialog object. The case is i want to update it with a programmatically added message.. Any way of doing that???

Thanks in Advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙与沫 2024-10-25 14:57:12

您需要“publish_stream”来发布流或您想要在没有用户交互的情况下发布的任何消息。

NSString *message = @"test message here";
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setObject:message forKey:@"message"];

[_facebook requestWithMethodName:@"facebook.Stream.publish" andParams:params
                   andHttpMethod:@"POST" andDelegate:self];

然后您可以在 facebook ie 的“委托”方法中处理响应

- (void)request:(FBRequest *)request didLoad:(id)result

希望有帮助,如果有请标记为答案。

谢谢

You need "publish_stream" for posting stream or any message you want to post without user interaction.

NSString *message = @"test message here";
NSMutableDictionary *params = [NSMutableDictionary dictionary];
[params setObject:message forKey:@"message"];

[_facebook requestWithMethodName:@"facebook.Stream.publish" andParams:params
                   andHttpMethod:@"POST" andDelegate:self];

Then you can handle the response in "Delegate" methods of facebook i.e.

- (void)request:(FBRequest *)request didLoad:(id)result

Hope that helps, Please mark as answer if it does.

Thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文