justapnet/justap-server-sdk-php

3.0.3 2024-09-04 00:13 UTC

This package is not auto-updated.

Last update: 2024-09-20 19:04:30 UTC


README

  • API版本:1.0
  • 构建包:io.swagger.codegen.languages.PhpClientCodegen

文档

https://www.justap.cn/docs

需求

PHP 5.5 及以上版本

安装与使用

Composer

要通过 Composer 安装绑定,请在 composer.json 中添加以下内容:

{
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com/justapnet/justap-server-sdk-php.git"
    }
  ],
  "require": {
    "justapnet/justap-server-sdk-php": "*@dev"
  }
}

然后运行 composer install

手动安装

下载文件并包含 autoload.php

    require_once('/path/to/justap-server-sdk-php/vendor/autoload.php');

测试

要运行单元测试,请

composer install
./vendor/bin/phpunit

入门

请按照 安装过程 进行操作,然后运行以下命令:

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: ApiKeyAuth
$config = Justapnet\Justap\Configuration::getDefaultConfiguration()->setApiKey('X-JUSTAP-API-KEY', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Justapnet\Justap\Configuration::getDefaultConfiguration()->setApiKeyPrefix('X-JUSTAP-API-KEY', 'Bearer');

$apiInstance = new Justapnet\Justap\Api\DefaultApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$body = new \Justapnet\Justap\Model\V1CreateUserRequest(); // \Justapnet\Justap\Model\V1CreateUserRequest | 

try {
    $result = $apiInstance->businessUserServiceCreateUser($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->businessUserServiceCreateUser: ', $e->getMessage(), PHP_EOL;
}

?>

API 端点文档

所有 URI 都相对于 http://127.0.0.1:21011

模型文档

授权文档

ApiKeyAuth

  • 类型:API密钥
  • API密钥参数名:X-JUSTAP-API-KEY
  • 位置:HTTP头

作者

support@justap.net