PFinal\Wechat\Service\AccountService::create PHP Method

create() public static method

public static create ( $account, $nickname, $password )
    public static function create($account, $nickname, $password)
    {
        $url = 'https://api.weixin.qq.com/customservice/kfaccount/add?access_token=ACCESS_TOKEN';
        return parent::request($url, compact('account', 'nickname', 'password'));
    }