0

一般来说,我对 javascript 和 web 编程很陌生。但基本上,我已经制作了一个 facebook 画布应用程序,我想知道如何重定向到页面并使用 javascript 使其停留在 iframe 中。例如:现在我有类似的东西

<script type="text/javascript">
      window.parent.location = "http://www.google.com";
  </script>

但这会重定向到不在画布应用程序内的谷歌页面......有什么想法吗?

谢谢!

4

1 回答 1

0

在 facebook 中,重定向选项被禁用。因此,除非用户单击它,否则您无法重定向到任何 uri。重定向是自动的,点击是手动的。

11. The primary purpose of your Canvas or Page Tab app on Facebook must not be to simply redirect users out of the Facebook experience and onto an external site.


2.You must not pre-fill any of the fields associated with the following products, unless the user manually generated the content earlier in the workflow: Stream stories (user_message parameter for Facebook.streamPublish and FB.Connect.streamPublish, and message parameter for stream.publish), Photos (caption), Videos (description), Notes (title and content), Links (comment), and Jabber/XMPP.

https://developers.facebook.com/policy/

于 2013-09-01T14:49:41.473 回答