在 FB 应用程序中,我想按下 html 按钮并退出应用程序并转到主 FB 页面。
这就像一个重定向。我尝试了以下方法:
<form name="quit" action="redirectMainPage.php">
<button class="quit" type="submit">Quit</button>
</form>
在redirectMainPage.php 中有:
<?php
header('Location: https://www.facebook.com') ;
?>
当我这样做时,我会留在我自己的应用程序的空白页面:https ://apps.facebook.com/my_app/
我认为这很容易做到,但是我坚持了一段时间并且已经没有想法了。