Files
kiri-wchat/wx/Account.php
T
as2252258@163.com c4b43deb9f add clear
2019-07-12 18:51:12 +08:00

28 lines
443 B
PHP

<?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)
{
return WxClient::get('sns/jscode2session', [
'appid' => $this->appid,
'secret' => $this->appsecret,
'js_code' => $code,
'grant_type' => 'authorization_code'
], null, ['Content-Type' => 'text/xml']);
}
}