chrgriffin/wave-api
Composer 安装命令:
composer require chrgriffin/wave-api
包简介
Simple PHP client to utilize Webaim's WAVE API.
README 文档
README
wave-api is a strongly typed package for interacting with Webaim's WAVE API.
Requirements
wave-api requires PHP 7.1 or greater. You will also need to create an account with the WAVE API in order to use it.
Installation
You can install via composer:
composer install chrgriffin/wave-api
Usage
Basic Usage
Using the client is extremely simple:
require_once './vendor/autoload.php'; use ChrGriffin\WaveApi\Client as WaveClient; $wave = new WaveClient('my-api-key'); $response = $wave->analyze('my-url');
Additional Parameters
If you want to specify optional parameters, such as viewportwidth, reporttype, or format, there are multiple ways to do so.
Firstly, you can specify any additional parameters when instantiating the client:
$wave = new WaveClient('my-api-key', [ 'viewportwidth' => 1440, 'reporttype' => 2, 'format' => 'json' ]);
Secondly, you can specify any additional parameters when making the request:
$response = $wave->analyze('my-url', [ 'viewportwidth' => 1440, 'reporttype' => 2, 'format' => 'json' ]);
Or thirdly, you can chain multiple setters:
$wave->setViewportwidth(1440) ->setReporttype(2) ->setFormat('json') ->analyze('my-url);
Response Format
The format parameter has two valid options: json and xml. Setting this parameter will change the response type:
- if format is
json, then$wave->analyze()will return a\stdClassobject - if format is
xml, then$wave->analyze()will return a\SimpleXMLElementobject
Documentation
Available Methods
getClient() : GuzzleHttp\Client(by default)setClient($client) : ChrGriffin\WaveApi\Client$client: Replace the default GuzzleHttp client with your own.
getKey() : stringsetKey(string $key) : ChrGriffin\WaveApi\Client$key: Your WAVE API key.
getFormat() : string(jsonby default)setFormat(string $format) : ChrGriffin\WaveApi\Client$format: The desired report format. An exception will be thrown if the value is neitherjsonnorxml.
getViewportwidth() : intsetViewportwidth(int $viewportwidth) : ChrGriffin\WaveApi\Client$viewportwidth: The desired viewport width when analyzing.
getEvaldelay() : intsetEvaldelay(int $evaldelay) : ChrGriffin\WaveApi\Client$evaldelay: The desired number of milliseconds to wait before analyzing.
getReporttype() : intsetReporttype(int $reporttype) : ChrGriffin\WaveApi\Client$reporttype: The desired report type. An exception will be thrown if the value is none of1,2, or3.
getUsername() : stringsetUsername(string $username) : ChrGriffin\WaveApi\Client$username: The desired username for basic HTTP authentication to the given URL.
getPassword() : stringsetPassword(string $password) : ChrGriffin\WaveApi\Client$password: The desired password for basic HTTP authentication to the given URL.
getResponseContents() : null|\stdClass|\SimpleXMLElement_(will be null before a request is made)setParams(array $params) : ChrGriffin\WaveApi\Client$params: An associative array of any or all paramaters. Valid paramaters:format : string(must be one ofjsonorxml)viewportwidth : intevaldelay : intreporttype : int(must be one of1,2, or3)username : stringpassword : string
analyze(string $url, array $params = []) : \stdClass|\SimpleXMLElement$url: The desired URL to analyze.$params: An associative array of any or all paramaters. Valid paramaters:format : string(must be one ofjsonorxml)viewportwidth : intevaldelay : intreporttype : int(must be one of1,2, or3)username : stringpassword : string
Exceptions
- A
\TypeErrorwill be thrown whenever an invalidly typed parameter is passed to a method (refer to the above documentation for valid types). - A
ChrGriffin\WaveApi\Exceptions\InvalidArgumentException(extends\InvalidArgumentException)will be thrown in the following instances:- Trying to set
formatto an invalid value (not one ofxmlorjson). - Trying to set
reporttypeto an invalid value (not one of1,2, or3). - Trying to set a parameter that doesn't exist.
- Trying to set
- A
ChrGriffin\WaveApi\Exceptions\ResponseExceptionwill be thrown when the WAVE API responds with an error. The error, if provided, will be the exception's message.
chrgriffin/wave-api 适用场景与选型建议
chrgriffin/wave-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3 次下载、GitHub Stars 达 2, 最近一次更新时间为 2019 年 02 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 chrgriffin/wave-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 chrgriffin/wave-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-02-07