Facebook Connect 与 iPhone 的问题
我必须将 Facebook 连接与 iPhone 应用程序集成。 我下载了SDK,在facebook上添加了新的应用程序。
但我有一个问题。所有示例和教程都包含提要发布功能。 在 SDK 中包含的示例中,我必须插入 Template Bundle Id 而不是 '9999999'
:
- (void)publishFeed:(id)target {
FBFeedDialog* dialog = [[[FBFeedDialog alloc] init] autorelease];
dialog.delegate = self;
dialog.templateBundleId = 9999999;
dialog.templateData = @"{\"key1\": \"value1\"}";
[dialog show];
}
在哪里可以创建 templateBundleId?我在开发者工具中找不到如何创建它。
可能模板已被弃用。如果这是真的,那么我可以用什么来在 FB 上发布呢?我该如何使用 iPhone SDK 来做到这一点?
I have to integrate FaceBook connect with the iPhone App.
I downloaded SDK, added new app on the facebook.
But I have a problem. All samples and tutorials contains feature with feeds publishing.
In the sample which included in the SDK I have to insert Template Bundle Id instead of '9999999'
:
- (void)publishFeed:(id)target {
FBFeedDialog* dialog = [[[FBFeedDialog alloc] init] autorelease];
dialog.delegate = self;
dialog.templateBundleId = 9999999;
dialog.templateData = @"{\"key1\": \"value1\"}";
[dialog show];
}
Where can I create templateBundleId? I can't found how to create it in the Developer's Tools.
May be templates is deprecated. If it's true then what can I use for publishing on the FB? And how can I do it with the iPhone SDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在控制台中创建 templateBundleId - http://developers.facebook.com/tools.php
You create the templateBundleId in the console - http://developers.facebook.com/tools.php