ltd-beget/openapi-vps-php

未提供描述(由 Openapi Generator 生成 https://github.com/openapitools/openapi-generator)

v1.6.0 2023-11-29 18:03 UTC

This package is auto-updated.

Last update: 2024-08-29 19:27:35 UTC


README

未提供描述(由 Openapi Generator 生成 https://github.com/openapitools/openapi-generator

安装和用法

要求

PHP 7.4 及以上。也应与 PHP 8.0 兼容。

Composer

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

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/LTD-Beget/openapi-vps-php.git"
    }
  ],
  "require": {
    "LTD-Beget/openapi-vps-php": "*@dev"
  }
}

然后运行 composer install

手动安装

下载文件并包含 autoload.php

<?php
require_once('/path/to/BegetOpenAPIVps/vendor/autoload.php');

入门指南

请遵循 安装过程,然后运行以下命令

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



// Configure Bearer (JWT) authorization: bearerAuth
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');


$apiInstance = new OpenAPI\Client\Api\BackupServiceApi(
    // 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
);

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

API 端点

所有 URI 都相对于 https://api.beget.com

模型

授权

携带认证

  • 类型:携带认证(JWT)

测试

要运行测试,请使用

composer install
vendor/bin/phpunit

作者

关于此包

此PHP包是由OpenAPI Generator项目自动生成的

  • API版本:v1.6.0
    • 包版本:v1.6.0
  • 构建包:org.openapitools.codegen.languages.PhpClientCodegen