用于检测选项卡中用户语言的 FBML 标记

发布于 2024-08-28 04:12:07 字数 186 浏览 6 评论 0 原文

我有一个需要显示 JPEG 图像的粉丝页面的自定义选项卡。我有一张英文图片和一张法文图片。有没有办法检测 FBML 中的用户区域设置以显示正确的图像?

我知道如何使用 Facebook fb_sig_locale 参数来执行此服务器端操作,但我计划仅使用静态 FBML 应用程序,这比设置整个自定义应用程序简单得多。

I have a custom tab for a fan page that need to display a JPEG image. I have an image in English and one in French. Is there a way to detect the user locale in FBML to display the right image?

I know how to do this server side using the Facebook fb_sig_locale param but I was planning on just using the Static FBML app which is much simpler than setting up a whole custom application.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

天荒地未老 2024-09-04 04:12:07

您可以按国家/地区设置约束,为此使用:

<fb:restricted-to location="us">
  <img src="../us_image.gif"/>
<fb:else>
  <img src="../world_image.gif"/>
</fb:else>
</fb:restricted-to>

在此处检查 fb:restricted-to 中可能的更多约束:

http://wiki.developers.facebook.com/index.php/Fb:restricted-to

You can put constraint by country, for that use this:

<fb:restricted-to location="us">
  <img src="../us_image.gif"/>
<fb:else>
  <img src="../world_image.gif"/>
</fb:else>
</fb:restricted-to>

check here for more constraints possible in fb:restricted-to :

http://wiki.developers.facebook.com/index.php/Fb:restricted-to

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