geek vor 4 Jahren
Ursprung
Commit
dbc7c8145d
1 geänderte Dateien mit 13 neuen und 0 gelöschten Zeilen
  1. 13 0
      application/index/controller/User.php

+ 13 - 0
application/index/controller/User.php

@@ -21,6 +21,19 @@ class User extends BaseController {
             'key'    => md5(input('userid').CommonService::getSetData()['channel_auth_code'])
         ];
         session('unionid', input('unionid'));
+        if (session('unionid')){
+            $visitorId = input('visitorId');
+            $notifyUrl = input('notify_url');
+            //增加客户自己的验证逻辑,例如登录,关注,付费,填手机号等
+            $key = md5($visitorId.CommonService::getSetData()['channel_auth_code']);
+            if(strpos($notifyUrl,'?') !== false){//url参数处理,将key加到url参数中
+                $returnUrl = $notifyUrl."&key=".$key."&expire=3600";
+            }else{
+                $returnUrl = $notifyUrl."?key=".$key."&expire=3600";
+            }
+            header("Location:".$returnUrl);//跳转到直播观看页
+            die();
+        }
         header('Location:http://mudu.tv/activity.php?a=userAssign&'.http_build_query($params));
     }
 }