brannow/myra-web-api
最新稳定版本:1.0.2
Composer 安装命令:
composer require brannow/myra-web-api
包简介
Php implementation of the myracloud.com api
关键字:
README 文档
README
What is this?
This Library implements a minimal API layer on top of guzzlehttp/guzzle to access the Myracloud Web API.
You can either use the WebApi Class to access a number of predefined endpoints or use the Signature Middleware with your own GuzzleHttp/Guzzle instance, to transparently handle authentication and signing of requests.
When using the endpoints please remember that these are very thin abstractions so they will return plain arrays with result data. Errors and Exceptions from either Guzzle or the API will have to be handled in you code.
For more flexibility, you can use a GuzzleHttp/Guzzle instance to access the API endpoint directly. In this case you can simply attach the signature middleware to handle Authentication headers as seen in WebApi::_construct()
$signature = new Signature($secret, $apiKey);
$stack->push(
Middleware::mapRequest(
function (RequestInterface $request) use ($signature) {
return $signature->signRequest($request);
}
)
);
Installation
via Composer:
composer require myra-security-gmbh/web-api
统计信息
- 总下载量: 2.3k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-03-22