如何继续重定向?

时间:2019-07-08 06:16:22

标签: php android redirect header

我的目标是自动在我的Facebook页面上发布图片。 重定向在网络上工作正常。 但是在我的应用程序中,发布到Facebook页面仅一次。 它仅在首次运行该应用程序且发生第一次重定向时有效。 是否有解决方法来继续重​​定向此问题?

<?php
header("Content-Type: image/png");
imagepng($im, $savepath);
imagedestroy($im);
header_remove();
header("Content-Type: text/html; charset=UTF-8");
header("Location: ../facebook/sendfb.php?img=".$savepath);
?>

如果可以,我可以看到已移动页面的网址和响应码200。 如果重定向不起作用,我可以检查responsecdoe 302。

0 个答案:

没有答案