0

私は一般的にJavaScriptとWebプログラミングにまったく慣れていません。しかし、基本的に、私は Facebook キャンバス アプリケーションを作成しました。どのようにページにリダイレクトし、javascript を使用して iframe 内にとどめることができるのか疑問に思っていました。例:今、私は次のようなものを持っています

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

しかし、これはキャンバスアプリケーション内ではなくGoogleページにリダイレクトされます...何かアイデアはありますか?

ありがとうございました!

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 に答える