Session::get('wxId'), 'channel_id' => $channelId]) ->order(['id' => 'desc'])->find(); if (empty(Session::get('wxId')) || empty($info)){ $temp = CommonService::getAuthUrl($channelId); header("Location:".$temp); die(); } $params = [ 'id' => $info['channel_id'], 'userid' => $info['unionid'], 'name' => $info['name'], 'avatar' => $info['avatar'], 'key' => $info['key'] ]; header('Location:http://webcasting.bizconfstreaming.com/activity.php?a=userAssign&'.http_build_query($params)); die(); //增加客户自己的验证逻辑,例如登录,关注,付费,填手机号等 $key = md5($visitorId.$data['channel_auth_code']); if(strpos($notifyUrl,'?') !== false){//url参数处理,将key加到url参数中 $returnUrl = $notifyUrl."&key=".$key."&expire=1"; }else{ $returnUrl = $notifyUrl."?key=".$key."&expire=1"; } header("Location:".$returnUrl);//跳转到直播观看页 // redirect($returnUrl); } }