时间:2022-08-06 22:00:01 | 来源:网站运营
时间:2022-08-06 22:00:01 来源:网站运营
在做微信开发的时候,会遇到这样的场景:一个公众号,会有多个业务:官网、论坛、商城等等header("location:http://code.test.com/code.php?ask_type=www");
http://bbs.test.com 授权代码改为:header("location:http://code.test.com/code.php?ask_type=bbs");
http://code.test.com 域名新建三个文件if(isset($_GET['ask_type']) && !empty($_GET['ask_type'])){ $ask_type = $_GET['ask_type']; if($ask_type == 'bbs'){ $action = "bbs.php"; }elseif($ask_type == 'www'){ $action = "www.php"; } //发起授权 $appid = ""; $redirect_url = "http://code.test.com/".$action; $code_url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=".$appid."&redirect_uri=".urlencode($redirect_url)."&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect"; header("location: ".$code_url); die;}else{ echo "nononono";}
bbs.php文件代码:if(isset($_GET['code']) && !empty($_GET['code'])){ $code = $_GET['code']; $bbs = "http://bbs.test.com/"; header("location:".$bbs."?code=".$code);}else{ echo 'nonono';}
www.php文件代码:if(isset($_GET['code']) && !empty($_GET['code'])){ $code = $_GET['code']; $bbs = "http://www.test.com/"; header("location:".$bbs."?code=".$code);}else{ echo 'nonono';}
目前是两个业务域名。如果还有其他业务,可以按照上述例子新增!关键词:解决,方案,授权