s-patompong/hmrc-api-php
Composer 安装命令:
composer require s-patompong/hmrc-api-php
包简介
README 文档
README
This library can be used to connect and does operations on HMRC API https://developer.service.hmrc.gov.uk/api-documentation.
How to use
For global API such as Hello World, you can use HelloWorldRequest class to deal with the API call.
<?php $request = new \HMRC\Hello\HelloWorldRequest; // Response is instant of HMRCResponse class $response = $request->fire(); return $response->getBody();
For application-restricted API call such as Hello Application. First set the server token using ServerToken class and then you can use HelloApplicationRequest class to call the API.
<?php // ServerToken is singleton so please use getInstance() method to get an instance and then use set method on it \HMRC\ServerToken\ServerToken::getInstance()->set($_GET['server_token']); $request = new \HMRC\Hello\HelloApplicationRequest; $response = $request->fire(); return $response->getBody();
For user-restricted API call, please see the next section.
User-Restricted API call
The easiest way to learn about this is by running the local server using php -S localhost:8080 command at the root of this library. And then navigate to http://localhost:8080/examples/index.php on your browser. Don't forget to setup the credentials inside examples/config.php file.
<?php $clientId = 'clientid'; $clientSecret = 'clientsecret'; $serverToken = 'servertoken';
You can gain the access token by create HMRC Oauth2 Provider and redirect to authorize URL (see example/oauth2/create-access-token.php for example).
<?php $callbackUri = "http://localhost:8080/examples/oauth2/callback.php" ; $_SESSION[ 'client_id' ] = $_GET[ 'client_id' ]; $_SESSION[ 'client_secret' ] = $_GET[ 'client_secret' ]; $_SESSION[ 'callback_uri' ] = $callbackUri; $_SESSION[ 'caller' ] = "/examples/index.php"; $provider = new \HMRC\Oauth2\Provider( $_GET[ 'client_id' ], $_GET[ 'client_secret' ], $callbackUri ); $scope = [ \HMRC\Scope\Scope::VAT_READ, \HMRC\Scope\Scope::HELLO, \HMRC\Scope\Scope::VAT_WRITE ]; $provider->redirectToAuthorizationURL($scope);
After user grant authorize on HMRC authorization page, it will redirect back to $callbackUri, which in the example above, the callback.php file.
Content of callback.php
<?php $provider = new \HMRC\Oauth2\Provider( $_SESSION[ 'client_id' ], $_SESSION[ 'client_secret' ], $_SESSION[ 'callback_uri' ] ); // Try to get an access token using the authorization code grant. $accessToken = $provider->getAccessToken('authorization_code', [ 'code' => $_GET['code'] ]); \HMRC\Oauth2\AccessToken::set($accessToken); header("Location: /examples/index.php"); exit;
You need to use \HMRC\Oauth2\AccessToken class to get and set access token. The class that do the request will get Access Token from this class.
After get the access token and save it inside \HMRC\Oauth2\AccessToken, we can start calling user-restricted API. For example, here is the request to hello user endpoint.
<?php $request = new \HMRC\Hello\HelloUserRequest; $response = $request->fire(); return $response->getBody();
Change between sandbox and live environment
In default mode, this library will talk with sandbox environment of HMRC. If you want to use live environment, you can call it via Environment singleton.
<?php \HMRC\Environment\Environment::getInstance()->setToLive();
Development & Contribution
Contributor is more than welcome to help develop this library, all the important methods should have unit test.
To run test, simply call composer test command on terminal.
s-patompong/hmrc-api-php 适用场景与选型建议
s-patompong/hmrc-api-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.9k 次下载、GitHub Stars 达 10, 最近一次更新时间为 2019 年 01 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 s-patompong/hmrc-api-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 s-patompong/hmrc-api-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3.9k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 10
- 点击次数: 8
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-01-30