<?php
/*
* This file is part of the overtrue/wechat.
*
* (c) overtrue <i@overtrue.me>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace EasyWeChat\MiniProgram\AppCode;
use EasyWeChat\Kernel\BaseClient;
use EasyWeChat\Kernel\Http\StreamResponse;
/**
* Class Client.
*
* @author mingyoung <mingyoungcheung@gmail.com>
*/
class Client extends BaseClient
{
public function get(string $path, array $optional = [])
{
$params = array_merge([
'path' => $path,
], $optional);
return $this->getStream('wxa/getwxacode', $params);
}
public function getUnlimit(string $scene, array $optional = [])
{
$params = array_merge([
'scene' => $scene,
], $optional);
return $this->getStream('wxa/getwxacodeunlimit', $params);
}
public function getQrCode(string $path, int $width = null)
{
return $this->getStream('cgi-bin/wxaapp/createwxaqrcode', compact('path', 'width'));
}
protected function getStream(string $endpoint, array $params)
{
return StreamResponse::buildFromPsrResponse($this->requestRaw($endpoint, 'POST', ['json' => $params]));
}
}