|
@@ -54,7 +54,7 @@ class MiniProgram extends Api
|
|
|
} catch (\Exception $e) {
|
|
|
if ($e->getCode() == '-41003') $this->error('获取会话密匙失败');
|
|
|
}
|
|
|
-
|
|
|
+ @file_put_contents("user.txt",json_encode($userInfo).'--'.json_encode($userInfoCong));
|
|
|
if (!isset($userInfoCong['openid'])) $this->error('openid获取失败');
|
|
|
if (!isset($userInfo['unionId'])) $userInfo['unionId'] = '';
|
|
|
$userInfo['openId'] = $userInfoCong['openid'];
|
|
@@ -62,7 +62,7 @@ class MiniProgram extends Api
|
|
|
$userInfo['code'] = $data['spread_code'];
|
|
|
$userInfo['session_key'] = $session_key;
|
|
|
$userInfo['login_type'] = $login_type;
|
|
|
- @file_put_contents("user.txt",json_encode($userInfo).'--'.json_encode($userInfoCong));
|
|
|
+
|
|
|
$user = User::where('id', UserRelation::openidToUid($userInfo['openId'], 'routine_openid'))->find();
|
|
|
if (!$user)
|
|
|
$this->error('获取用户失败');
|