Facebook App Iframe 设置自动增长

发布于 2024-12-28 20:37:08 字数 83 浏览 1 评论 0原文

我们在应用程序中的 body 标记结束之前调用 FB.Canvas.setAutoGrow() 。但它不起作用。我们应该把自动增长放在哪里以确保它被调用

We are calling FB.Canvas.setAutoGrow() before end of the body tag in our app. But it is not working. Where should we put the autogrow to make sure it gets called

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

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

发布评论

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

评论(2

比忠 2025-01-04 20:37:08

我通常把它放在调用 FB.init() 函数之后。这通常位于 fbAsyncInit 函数内部。

Just after you call the FB.init() function is where I usually put it. That's usually inside of the fbAsyncInit function.

第几種人 2025-01-04 20:37:08

它应该包含在此区域之后:

FB.init({
//SETTINGS HERE
});

如果您认为所有设置都正确但仍然无法正常工作,请确保您设置了正确的文档类型。这可能会导致它无法在 IE 版本中运行。

示例:

<!DOCTYPE html>

希望有帮助...

It should be included after this area:

FB.init({
//SETTINGS HERE
});

If you believe you have everything set up correctly and it still isn't working, make sure you have the correct doctype set. That can cause it not to work in versions of IE.

Example:

<!DOCTYPE html>

Hope that helps...

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