开发者

Iframe redirect error

开发者 https://www.devze.com 2023-01-05 17:27 出处:网络
I have a facebook iframe application that is having trouble redirecting, I keep getting security certificate errors like these \"Content was blocked because it was not signed by a valid security certi

I have a facebook iframe application that is having trouble redirecting, I keep getting security certificate errors like these "Content was blocked because it was not signed by a valid security certificate.", here is the redirect code,

$params = array(
    'canvas'=>1,
    'fbconnect'=>0,
    'req_perms'=>'user_photos,publish_stream,offline_access',
    'next'=>'http://apps.facebook.com/my-test/', 
    'cancel_url'=>'http://apps.facebook.com/my-test/',
);

$redirect = $facebook->getLoginUrl($params);

echo "<script language='Javascript' type='text/javascript'>top.location.href='$redirect';</script>";

and when I try to redirect the user using a PHP redirect, like so,

header('Location: '.$redirect);

all I get is a iframe filled with a bla开发者_Go百科ck background.

Is there another way I could redirect the page? or fix this error?

Thanx in advance!


Make sure your not sending whitespace in your scripts before the header command.

An example of whitespace

<?php
echo ' ';

header('Location: home'); //Will not send.
?>

Another example:

     <-- Whitespace here maybe?
<?php
    header('Location: home'); //Will not send.
?>

Try turn on php errors to debug whats going on when you send the header command, using error_reporting(E_ALL);

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号