user10/raas
Composer 安装命令:
composer require user10/raas
包简介
With this RESTful API you can integrate a global reward or incentive program into your app or platform. If you have any questions or if you'd like to receive your own credentials, please contact us at devsupport@tangocard.com.
README 文档
README
With this RESTful API you can integrate a global reward or incentive program into your app or platform. If you have any questions or if you'd like to receive your own credentials, please contact us at devsupport@tangocard.com.
How to Build
The generated code has dependencies over external libraries like UniRest. These dependencies are defined in the composer.json file that comes with the SDK.
To resolve these dependencies, we use the Composer package manager which requires PHP greater than 5.3.2 installed in your system.
Visit https://getcomposer.org/download/ to download the installer file for Composer and run it in your system.
Open command prompt and type composer --version. This should display the current version of the Composer installed if the installation was successful.
- Using command line, navigate to the directory containing the generated files (including
composer.json) for the SDK. - Run the command
composer install. This should install all the required dependencies and create thevendordirectory in your project directory.
[For Windows Users Only] Configuring CURL Certificate Path in php.ini
CURL used to include a list of accepted CAs, but no longer bundles ANY CA certs. So by default it will reject all SSL certificates as unverifiable. You will have to get your CA's cert and point curl at it. The steps are as follows:
- Download the certificate bundle (.pem file) from https://curl.haxx.se/docs/caextract.html on to your system.
- Add curl.cainfo = "PATH_TO/cacert.pem" to your php.ini file located in your php installation. “PATH_TO” must be an absolute path containing the .pem file.
[curl] ; A default value for the CURLOPT_CAINFO option. This is required to be an ; absolute path. ;curl.cainfo =
How to Use
The following section explains how to use the Raas library in a new project.
1. Open Project in an IDE
Open an IDE for PHP like PhpStorm. The basic workflow presented here is also applicable if you prefer using a different editor or IDE.
Click on Open in PhpStorm to browse to your generated SDK directory and then click OK.
2. Add a new Test Project
Create a new directory by right clicking on the solution name as shown below:
Name the directory as "test"
Add a PHP file to this project
Name it "testSDK"
Depending on your project setup, you might need to include composer's autoloader in your PHP code to enable auto loading of classes.
require_once "../vendor/autoload.php";
It is important that the path inside require_once correctly points to the file autoload.php inside the vendor directory created during dependency installations.
After this you can add code to initialize the client library and acquire the instance of a Controller class. Sample code to initialize the client library and using controller methods is given in the subsequent sections.
3. Run the Test Project
To run your project you must set the Interpreter for your project. Interpreter is the PHP engine installed on your computer.
Open Settings from File menu.
Select PHP from within Languages & Frameworks
Browse for Interpreters near the Interpreter option and choose your interpreter.
Once the interpreter is selected, click OK
To run your project, right click on your PHP file inside your Test project and click on Run
How to Test
Unit tests in this SDK can be run using PHPUnit.
- First install the dependencies using composer including the
require-devdependencies. - Run
vendor\bin\phpunit --verbosefrom commandline to execute tests. If you have installed PHPUnit globally, run tests usingphpunit --verboseinstead.
You can change the PHPUnit test configuration in the phpunit.xml file.
Initialization
Authentication
In order to setup authentication and initialization of the API client, you need the following information.
| Parameter | Description |
|---|---|
| platformName | RaaS v2 API Platform Name |
| platformKey | RaaS v2 API Platform Key |
API client can be initialized as following.
$platformName = 'QAPlatform2'; // RaaS v2 API Platform Name $platformKey = 'apYPfT6HNONpDRUj3CLGWYt7gvIHONpDRUYPfT6Hj'; // RaaS v2 API Platform Key $client = new RaasLib\RaasClient($platformName, $platformKey);
Class Reference
List of Controllers
- OrdersController
- AccountsController
- CatalogController
- ExchangeRatesController
- StatusController
- CustomersController
- FundController
OrdersController
Get singleton instance
The singleton instance of the OrdersController class can be accessed from the API Client.
$orders = $client->getOrders();
createOrder
TODO: Add a method description
function createOrder($body)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| body | Required |
TODO: Add a parameter description |
Example Usage
$body = new CreateOrderRequestModel(); $result = $orders->createOrder($body);
getOrder
TODO: Add a method description
function getOrder($referenceOrderID)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| referenceOrderID | Required |
Reference Order ID |
Example Usage
$referenceOrderID = 'referenceOrderID'; $result = $orders->getOrder($referenceOrderID);
getOrders
TODO: Add a method description
function getOrders($options)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| accountIdentifier | Optional |
TODO: Add a parameter description |
| customerIdentifier | Optional |
TODO: Add a parameter description |
| externalRefID | Optional |
TODO: Add a parameter description |
| startDate | Optional |
TODO: Add a parameter description |
| endDate | Optional |
TODO: Add a parameter description |
| elementsPerBlock | Optional |
TODO: Add a parameter description |
| page | Optional |
TODO: Add a parameter description |
Example Usage
$accountIdentifier = 'accountIdentifier'; $collect['accountIdentifier'] = $accountIdentifier; $customerIdentifier = 'customerIdentifier'; $collect['customerIdentifier'] = $customerIdentifier; $externalRefID = 'externalRefID'; $collect['externalRefID'] = $externalRefID; $startDate = date("D M d, Y G:i"); $collect['startDate'] = $startDate; $endDate = date("D M d, Y G:i"); $collect['endDate'] = $endDate; $elementsPerBlock = 114; $collect['elementsPerBlock'] = $elementsPerBlock; $page = 114; $collect['page'] = $page; $result = $orders->getOrders($collect);
createResendOrder
TODO: Add a method description
function createResendOrder($referenceOrderID)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| referenceOrderID | Required |
TODO: Add a parameter description |
Example Usage
$referenceOrderID = 'referenceOrderID'; $result = $orders->createResendOrder($referenceOrderID);
AccountsController
Get singleton instance
The singleton instance of the AccountsController class can be accessed from the API Client.
$accounts = $client->getAccounts();
getAccount
Get an account
function getAccount($accountIdentifier)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| accountIdentifier | Required |
Account Identifier |
Example Usage
$accountIdentifier = 'accountIdentifier'; $result = $accounts->getAccount($accountIdentifier);
getAccountsByCustomer
Gets a list of accounts for a given customer
function getAccountsByCustomer($customerIdentifier)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| customerIdentifier | Required |
Customer Identifier |
Example Usage
$customerIdentifier = 'customerIdentifier'; $result = $accounts->getAccountsByCustomer($customerIdentifier);
createAccount
Create an account under a given customer
function createAccount( $customerIdentifier, $body)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| customerIdentifier | Required |
Customer Identifier |
| body | Required |
Request Body |
Example Usage
$customerIdentifier = 'customerIdentifier'; $body = new CreateAccountRequestModel(); $result = $accounts->createAccount($customerIdentifier, $body);
getAllAccounts
Gets all accounts under the platform
function getAllAccounts()
Example Usage
$result = $accounts->getAllAccounts();
CatalogController
Get singleton instance
The singleton instance of the CatalogController class can be accessed from the API Client.
$catalog = $client->getCatalog();
getCatalog
Get Catalog
function getCatalog()
Example Usage
$result = $catalog->getCatalog();
ExchangeRatesController
Get singleton instance
The singleton instance of the ExchangeRatesController class can be accessed from the API Client.
$exchangeRates = $client->getExchangeRates();
getExchangeRates
Retrieve current exchange rates
function getExchangeRates()
Example Usage
$result = $exchangeRates->getExchangeRates();
StatusController
Get singleton instance
The singleton instance of the StatusController class can be accessed from the API Client.
$status = $client->getStatus();
getSystemStatus
Tags:
Skips Authentication
Retrieve system status
function getSystemStatus()
Example Usage
$result = $status->getSystemStatus();
CustomersController
Get singleton instance
The singleton instance of the CustomersController class can be accessed from the API Client.
$customers = $client->getCustomers();
getCustomer
Get a customer
function getCustomer($customerIdentifier)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| customerIdentifier | Required |
Customer Identifier |
Example Usage
$customerIdentifier = 'customerIdentifier'; $result = $customers->getCustomer($customerIdentifier);
createCustomer
Create a new customer
function createCustomer($body)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| body | Required |
Request Body |
Example Usage
$body = new CreateCustomerRequestModel(); $result = $customers->createCustomer($body);
getAllCustomers
Gets all customers under the platform
function getAllCustomers()
Example Usage
$result = $customers->getAllCustomers();
FundController
Get singleton instance
The singleton instance of the FundController class can be accessed from the API Client.
$fund = $client->getFund();
getCreditCards
List all credit cards registered on this platform
function getCreditCards()
Example Usage
$result = $fund->getCreditCards();
createCreditCard
Register a new credit card
function createCreditCard($body)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| body | Required |
TODO: Add a parameter description |
Example Usage
$body = new CreateCreditCardRequestModel(); $result = $fund->createCreditCard($body);
createUnregisterCreditCard
Unregister a credit card
function createUnregisterCreditCard($body)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| body | Required |
TODO: Add a parameter description |
Example Usage
$body = new UnregisterCreditCardRequestModel(); $result = $fund->createUnregisterCreditCard($body);
createDeposit
Fund an account
function createDeposit($body)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| body | Required |
TODO: Add a parameter description |
Example Usage
$body = new DepositRequestModel(); $result = $fund->createDeposit($body);
getDeposit
Get details for a specific credit card deposit
function getDeposit($depositId)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| depositId | Required |
Deposit ID |
Example Usage
$depositId = 'depositId'; $result = $fund->getDeposit($depositId);
getCreditCard
Get details for a specific credit card
function getCreditCard($token)
Parameters
| Parameter | Tags | Description |
|---|---|---|
| token | Required |
Card Token |
Example Usage
$token = 'token'; $result = $fund->getCreditCard($token);
user10/raas 适用场景与选型建议
user10/raas 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 25 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 08 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「sdk」 「Tango Card RaaS v2 API」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 user10/raas 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 user10/raas 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 user10/raas 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Unofficial Tango Card RaaS API
Tango Card PHP SDK
Tango Admin Panel
A lightweight plain-PHP framework for database-backed CRUD APIs.
Modern, strongly-typed, PSR-compliant PHP client for the WeFact v2 API.
统计信息
- 总下载量: 25
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2019-08-30