Skip to content

Commit

Permalink
Update Oauth.php
Browse files Browse the repository at this point in the history
  • Loading branch information
funadmin authored Mar 22, 2022
1 parent 13e1711 commit 25eb4a7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/auth/Oauth.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ public function certification($data = []){
->where('tablename',$this->tableName)
->where('group',$this->group)
->where('access_token',$data['access_token'])->order('id desc')->find();
dump($AccessToken);die;
}
if(!$AccessToken){
$this->error('access_token不存在或过期','',401);
Expand Down Expand Up @@ -175,4 +174,4 @@ private function buildSign($params = [] , $app_secret = '') {
return strtolower(md5(urldecode(http_build_query($params))));
}

}
}

0 comments on commit 25eb4a7

Please sign in to comment.