Files
kiri-wchat/wx/Account.php
T

27 lines
440 B
PHP
Raw Normal View History

2018-07-19 12:10:22 +08:00
<?php
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/4/19 0019
* Time: 16:12
*/
namespace wchat;
class Account extends Base
{
/**
* @param $code
* @return Result
*/
public function login($code)
{
2018-07-19 18:48:36 +08:00
return Http::get('sns/jscode2session', [
2018-07-19 12:10:22 +08:00
'appid' => $this->app_id,
'secret' => $this->app_secret,
'js_code' => $code,
'grant_type' => 'authorization_code'
], null, ['Content-Type' => 'text/xml']);
}
}