php 登入回到原页面,qq互联从哪个页面登入返回到原来页面中

使用session

session_start();

define('QQ_APPID','102468789');//appkey

define('QQ_APPSECRET','914bf642u54fc9181cc695bc1f43f5');//appsecret

define('QQ_REDIRECT_URI','http://www.zhaoyoucai.com/mp/auth-qq.php');//redirect_uri

function fa_qq_oauth_redirect(){

echo '

window.opener.location.reload();

window.close()

} else {

window.location.href = "'.$_SESSION['prevUrl'].'"

}';

}

function qq_oauth(){

//略去验证过程

//成功后跳转

fa_qq_oauth_redirect();

}

function qq_oauth_url(){

$url = "https://graph.qq.com/oauth2.0/authorize?client_id=" . QQ_APPID . "&state=" . md5 ( uniqid ( rand (), true ) ) . "&response_type=code&redirect_uri=" . urlencode (QQ_REDIRECT_URI);

//return $url;

echo "

echo "window.location.href='$url'";

echo "";

}

if (isset($_GET ['state']) && isset($_GET ['code'])) qq_oauth();

if (isset($_GET ['showurl']) ){

if($_GET ['showurl']!=''){

$_SESSION['prevUrl'] = $_GET ['showurl'];

}else{

if(isset($_SERVER['HTTP_REFERER'])) {

$_SESSION['prevUrl'] = $_SERVER['HTTP_REFERER'];

}else{

$_SESSION['prevUrl'] = home_url();

}

}

qq_oauth_url();

}

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值