g-portal/lago-php-client

Lago API 允许您的应用程序将客户信息和指标(事件)从您的应用程序推送到计费应用程序。

v0.37.0-beta 2023-07-06 10:51 UTC

This package is auto-updated.

Last update: 2024-09-06 13:07:19 UTC


README

Lago API 允许您的应用程序将客户信息和指标(事件)从您的应用程序推送到计费应用程序。

安装与使用

要求

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

Composer

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

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/GIT_USER_ID/GIT_REPO_ID.git"
    }
  ],
  "require": {
    "GIT_USER_ID/GIT_REPO_ID": "*@dev"
  }
}

然后运行 composer install

手动安装

下载文件并包含 autoload.php

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

入门指南

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

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



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


$apiInstance = new LagoClient\Api\AddOnsApi(
    // 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
);
$applied_add_on_input = new \LagoClient\Model\AppliedAddOnInput(); // \LagoClient\Model\AppliedAddOnInput | Apply add-on payload

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

API 端点

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

模型

授权

为API定义的认证方案

bearerAuth

  • 类型: Bearer认证

测试

要运行测试,请使用

composer install
vendor/bin/phpunit

作者

tech@getlago.com

关于此包

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

  • API版本: 0.37.0-beta
  • 构建包: org.openapitools.codegen.languages.PhpClientCodegen