【发布时间】:2013-04-21 11:56:21
【问题描述】:
我刚刚意识到 Facebook URI 方案发布功能不再起作用。它会打开 Facebook 应用程序,但仅此而已。有没有办法通过 URI 方案发布内容?
你可以在下面找到我的代码。
NSString *post = [NSString stringWithFormat:@"fb://publish/profile/me?text=foo"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:post]];
【问题讨论】:
-
这在 Android 上也不再适用,所以如果有人现在知道该怎么做,我就加了一个赏金。它也应该在网站上工作(这就是为什么它应该使用 URI 方案而不是 Facebook SDK 来完成......)
-
fb://publish/?text=some text to post or fb://publish/profile/{fbid}?text={message}
标签: android iphone ios facebook url-scheme