* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace EasyWeChat\OfficialAccount\Base; use EasyWeChat\Kernel\BaseClient; /** * Class Client. * * @author mingyoung */ class Client extends BaseClient { /** * Clear quota. * * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string */ public function clearQuota() { $params = [ 'appid' => $this->app['config']['app_id'], ]; return $this->httpPostJson('cgi-bin/clear_quota', $params); } /** * Get wechat callback ip. * * @return \Psr\Http\Message\ResponseInterface|\EasyWeChat\Kernel\Support\Collection|array|object|string */ public function getValidIps() { return $this->httpGet('cgi-bin/getcallbackip'); } }