使用 .net facebook sdk 进行 Facebook 请求
我如何使用 facebook sdk 执行以下操作? -> http://developers.facebook.com/docs/guides/canvas/#requests <- 我不需要第一个框,但人员选择器是必要的。
干杯!
How can I do something like the following with the facebook sdk? -> http://developers.facebook.com/docs/guides/canvas/#requests <- I don't need the first box, but the people picker would be necessary.
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FBML 与 Facebook C# SDK 或任何服务器端 SDK 无关。您将需要使用 Javascript SDK 来渲染 fbml。您只需添加对 javascript SDK 的引用,如下所示:
此外,如果可以避免,则不应在新应用程序中使用任何旧的 FBML。您应该使用社交插件。 Facebook 表示:“我们正在弃用 FBML。如果您要在 Facebook.com 上构建新的应用程序,请使用我们的 JavaScript SDK 和社交插件在 iframe 中实现您的应用程序。尽管仍有一些功能我们尚未实现移植完毕后,我们不再向 FBML 添加新功能。”
FBML has nothing to do with the Facebook C# SDK or any server side SDK. You will want to use the Javascript SDK to render the fbml. You simply need to add a reference to the javascript SDK like this:
Additionally, you should not be using any of the old FBML in a new app if you can avoid it. You should use the social plugins. Facebook States: "We are in the process of deprecating FBML. If you are building a new application on Facebook.com, please implement your application within an iframe, using our JavaScript SDK and Social Plugins. While there is still functionality that we have not ported over yet, we are no longer adding new features to FBML."