FaceBook UI 使用新的 PHP/JS API 而不是 FBML
在哪里可以找到有关在 iframe 中的 PHP/JS (JavaScript) 画布应用程序中将应用程序设计为 facebook 外观/感觉的信息?
我有一些 FBML 画布应用程序的代码,但 facebook 正在逐步淘汰它,看来您只能将新的 PHP API 与 iframe 和 javascript (XFBML) SDK 结合使用。
我已经完成了大部分工作,但我无法弄清楚一些简单的事情 - 比如在 FBML 中显示一个漂亮的 facebook 风格的消息,我可以这样做:
<fb:success><fb:message><?php echo $fbmessage; ?></fb:message></fb:success>
或者
<fb:error message="An error has occurred." />
那些 FBML 标签似乎不再解析 - 可能不受 XFBML 支持。那么替代品是什么,或者更好的是,关于如何使用新的 iframe/javascript 画布设置并轻松设置样式的文档在哪里?也许是 CSS 文件? JS 调用? XFBML 插件?
谢谢!
Where do I find information on styling my application to facebook look/feel in a PHP/JS (JavaScript) canvas app in an iframe?
I have some code that is a FBML canvas app, but facebook is phasing that out and it seems you can only use the new PHP API with an iframe and the javascript (XFBML) SDK.
I have most of it working, but I can not figure out some simple things - like in FBML to show a nice facebook styled message, I could just do:
<fb:success><fb:message><?php echo $fbmessage; ?></fb:message></fb:success>
or
<fb:error message="An error has occurred." />
Those FBML tags seem to no longer parse - probably not supported by XFBML. So what are the replacements, or even better, where is the documentation on how to use the new iframe/javascript canvas setup and style it easily? Maybe a CSS file? JS calls? XFBML plugins?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要检查一些事项,以确保您的应用程序能够作为 iframe 应用程序而不是 FBML 应用程序运行:
xmlns:fb=根元素上的“http://www.facebook.com/2008/fbml”
声明:
<脚本类型=“text/fbml”>
FB.init 后调用
。FB.XFBML.parse()
()希望这能让您启动并运行。
There are few things that you'll need to check to make sure your app will work as an iframe app instead of an FBML one:
xmlns:fb="http://www.facebook.com/2008/fbml"
declaration on your root element<fb:serverFbml>
<script type="text/fbml">
<!-- your original FBML markup here... -->
</script>
</fb:serverFbml>
FB.XFBML.parse()
after callingFB.init()
.Hopefully this gets you up and running.
iFrame 应用程序没有真正的指南。也许值得咨询前端设计师/开发人员来为您的应用程序设计一个可视化框架。
There are no real guidelines for iFrame applications. Maybe it's worth consulting with a front end designer/developer to devise a visual framework for your application.