gpt4 book ai didi

php - 如何在 PHP 中集成 Assently api 进行电子签名交易

转载 作者:行者123 更新时间:2023-12-01 22:20:39 27 4
gpt4 key购买 nike

在我的 wp 项目中,我使用 Assently用于电子签名实现。虽然我有一个帐户并创建了一个 pdf 表单文件供用户填写,但我只是无法继续。我发现文档不清楚。另外,我不清楚需要做什么才能向用户显示处理交易的表单。

因此,我们非常感谢您提供任何帮助/建议以继续前进。

我根据 assently-laravel 尝试了以下操作。但它要求我登录。这里有什么错误?代码:

define('ASSENTLY_DEBUG', true);
define('ASSENTLY_KEY', 'key');
define('ASSENTLY_SECRET', 'secret-generated');

include_once('assently/Assently.php');
$assently = new Assently();
$assently->authenticate(ASSENTLY_KEY, ASSENTLY_SECRET);

$url = 'https://test.assently.com/api/v2/createcasefromtemplate';
$default = array(
'Id' => '5a0e0869-' . rand(1111, 9999) . '-4b79-' . rand(1111, 9999) . '-466ea5cca5ce'
);
$data = array(
'auth' => $assently->auth(),
'templateId' => '0e004e2b-b192-4ce2-8f47-d7a4576d7df6',
'newCaseId' => '5a0e0869-' . rand(1111, 9999) . '-4b79-' . rand(1111, 9999) . '-466ea5cca5ce',
'agentUsername' => ''
);

$data = array(
'json' => $data
);
$options = array(
'http' => array(
'header' => "Content-type: application/json; charset=utf-8\r\n",
'method' => 'POST',
'content' => http_build_query($data)
)
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
echo '<pre>';
print_r($result);
die;

最佳答案

在assently文件夹中创建此类

use Assently\AssentlyCase;
use Exception;

class CustomAssentlyCase extends AssentlyCase
{
public function createFromTemplate($data)
{
$default = [
'newCaseId' => '5a0e0869-'.rand(1111, 9999).'-4b79-'.rand(1111, 9999).'-466ea5cca5ce'
];

$json = array_merge($default, $data);

try{
$response = $this->client->post($this->url('createcasefromtemplate'), [
'auth' => $this->assently->auth(),
'json' => $json
]);

}catch(Exception $e){
print_r($e->getMessage());
}
return $response;
}
}

使用

define('ASSENTLY_DEBUG', true);
define('ASSENTLY_KEY', 'key');
define('ASSENTLY_SECRET', 'secret-generated');

include_once('assently/Assently.php');
include_once('assently/CustomAssentlyCase.php');
$assently = new Assently();
$assently->authenticate(ASSENTLY_KEY, ASSENTLY_SECRET);

$data = array(
'templateId' => '0e004e2b-b192-4ce2-8f47-d7a4576d7df6',
'newCaseId' => '5a0e0869-'.rand(1111, 9999).'-4b79-'.rand(1111, 9999).'-466ea5cca5ce',
'agentUsername' => 'agentUsername' // PUT your agent username here it is required
);

$customAssentlyCase = new CustomAssentlyCase($assently);
$result = $customAssentlyCase->createFromTemplate($data);
print_r($result);

尝试一下,虽然没有经过测试,但应该可以工作。祝你好运。

关于php - 如何在 PHP 中集成 Assently api 进行电子签名交易,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46664406/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com