datana-gmbh / fake-api-client
Fake-API 的 API
2.0.0
2023-10-09 08:19 UTC
Requires
- php: >=8.2
- datana-gmbh/formulario-api: ^1.2
- fakerphp/faker: ^1.23
- oskarstark/trimmed-non-empty-string: ^1.0
- psr/log: ^1.1 || ^2.0 || ^3.0
- symfony/http-client: ^4.4 || ^5.1 || ^6.0
- thecodingmachine/safe: ^1.0 || ^2.0
- webmozart/assert: ^1.7
Requires (Dev)
This package is auto-updated.
Last update: 2024-09-03 10:16:50 UTC
README
用法
安装
composer require datana-gmbh/fake-api-client
设置
use Datana\FakeApi\FakeApiClient; $baseUri = 'https://api.fake-api...'; $username = '...'; $password = '...'; $disableCache = true; // optional $timeout = 10; // optional $client = new FakeApiClient($baseUri, $username, $password, $disableCache, $timeout); // you can now request any endpoint which needs authentication $client->request('GET', '/api/something', $options);
数据输入
在您的代码中,您应该对 Datana\Formulario\Api\DateneingabenApiInterface
进行类型提示
通过案件编号 (string
) 获取
use Datana\FakeApi\DateneingabenApi; use Datana\FakeApi\FakeClient; use Datana\Formulario\Api\Domain\Value\DateneingabenId; $client = new FakeClient(/* ... */); $api = new DateneingabenApi($client); $response = $api->byAktenzeichen('1abcde-1234-5678-Mustermann'); /* * to get the DateneingabenId transform the response to array * and use the 'id' key. */ $akten = $response->toArray(); $dateneingabenId = DateneingabenId::fromInt($akte['id']);
通过 ID (Datana\Formulario\Api\Domain\Value\DateneingabenId
) 获取
use Datana\FakeApi\DateneingabenApi; use Datana\FakeApi\FakeClient; use Datana\Formulario\Api\Domain\Value\DateneingabenId; $client = new FakeClient(/* ... */); $api = new DateneingabenApi($client); $id = DateneingabenId::fromInt(123); $api->getById($id);
统计信息
在您的代码中,您应该对 Datana\Formulario\Api\StatisticsApiInterface
进行类型提示
获取为 Mandantencockpit 发送的邀请邮件数量
use Datana\FakeApi\StatisticsApi; use Datana\FakeApi\FakeClient; $client = new FakeClient(/* ... */); $api = new StatisticsApi($client); $api->numberOfCockpitInvitationMailsSent(); // 42