placeto/sdk-3ds-server
Composer 安装命令:
composer require placeto/sdk-3ds-server
包简介
Software development kit to connect with the 3ds server's API
README 文档
README
Software development kit to connect with the 3DS Server's API
Installation
You should add PlacetoPay repository:
{
"repositories": [
{
"type": "composer",
"url": "https://dev.placetopay.com/repository"
}
]
}
Then, you can install the package via composer:
composer require placeto/sdk-3ds-server
The first thing you need to do is create an instance of the Server3DS class and pass the credentials (token, baseUrl) as a parameter. Example:
return new Server3DS([
'token' => 'eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiIzIQvhzVU',
'baseUrl' => 'https://3dss-test.placetopay.com/api',
]);
Available methods
createMerchant():
To create a merchant, you must call the createMerchant() method from the Server3DS class instance and pass the request fields (array) to the API as a parameter. Example:
$request = [
"name" => "EGM Ingenieria sin froteras" . mt_rand(),
"brand" => "placetopay",
"country" => "COL",
"currency" => "COP",
"document" => [
"type" => "RUT",
"number" => "123456789-0"
],
"url" => "https://www.placetopay.com",
"mcc" => 742,
"isicClass" => 111,
"branch" => [
"name" => "Ofic principal." . mt_rand(),
"brand" => "placetopay dos",
"country" => "COL",
"currency" => "COP"
],
"subscriptions" => [
[
"franchise" => 1,
"acquirerBIN" => 400900,
"version" => 2
],
],
"invitations" => [
"admin@admin.com" => "juan.pabon@evertecinc.com"
]
];
$response = $this->server3DS()->createMerchant($request);
createSession():
To create a new session, you must call the createSession() method from the Server3DS class instance and pass the request fields (array) to the API as a parameter. Example:
$request = [
'acctNumber' => '4111111111111111',
'cardExpiryDate' => '2411',
'purchaseAmount' => '8.25',
'redirectURI' => 'http://www.placetopay.com',
'purchaseCurrency' => 'COP'
];
$response = $this->server3DS()->createSession($request);
transactionInformation():
To get transaction information, you must call the transactionInformation() method from the Server3DS class instance and pass the transactionID (string) to the API as a parameter. Example:
$transactionID = '135';
$response = $this->server3DS()->transactionInformation($transactionID);
addBranchesMerchants():
To add branches to a merchant, you must call the addBranchesMerchants() method from the Server3DS class instance and pass the request fields (array) and the merchantID of the URL to the API as a parameter. Example:
$request = [
"branches" => [
[
"name" => 'namebranch,
"brand" => "Evertec Medellin",
"country" => "COL",
"currency" => "COP",
"url" => "https://example-uno.com"
],
[
"name" => 'namebranch2,
"brand" => "Evertec Bogotá",
"country" => "COL",
"currency" => "COP",
"url" => "https://example-dos.com"
],
],
];
$merchantID = '135';
$response = $this->server3DS()->addBranchesMerchants($request, $merchantID);
Get only the message from the response with the getResponse() method.
$response->getResponse()
To get the token obtained in the response when creating a merchant, call the getToken() method.
$response->getToken()
For more information about the 3DS Server API see the documentation Here
placeto/sdk-3ds-server 适用场景与选型建议
placeto/sdk-3ds-server 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 9 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 11 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 placeto/sdk-3ds-server 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 placeto/sdk-3ds-server 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 9
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 15
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2022-11-11