vhxsd / kongclient
kong 网关客户端
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/vhxsd/kongclient
Requires
- php: >=7.0
- guzzlehttp/guzzle: ^6.2
This package is auto-updated.
Last update: 2025-10-16 05:15:46 UTC
README
#使用
<?php require_once __DIR__ . '/vendor/autoload.php'; use kongClient\Client; $config = [ 'gate_way_url' => '', 'api_key' => '', 'api_secret' => '', 'client_name' => '', 'link_tag' => '&', ]; $client = new Client($config); $path = ''; $res = $client->request($path); var_export($res);