Facebook Connect 与 iPhone 的问题

发布于 2024-08-21 11:03:10 字数 551 浏览 5 评论 0原文

我必须将 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 技术交流群。

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

发布评论

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

评论(1

说好的呢 2024-08-28 11:03:10

您在控制台中创建 templateBundleId - http://developers.facebook.com/tools.php

You create the templateBundleId in the console - http://developers.facebook.com/tools.php

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