vhxsd/kongclient

kong 网关客户端

v1.0 2018-10-15 09:34 UTC

This package is auto-updated.

Last update: 2024-09-16 03:01:05 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);