我正在为 echosine api 使用版本 6,
我需要创建 webhook 以从协议中获取事件。
我正在测试从以下 url 创建 webhook:
https://secure.na1.echosign.com/public/docs/restapi/v6#!/webhooks/createWebhook
在这里,我通过了以下详细信息:
{
"name": "agreement history",
"scope": "USER",
"state": "ACTIVE",
"webhookSubscriptionEvents": [
"AGREEMENT_CREATED"
],
"webhookUrlInfo": {
"url": "MY_SITE_URL_TO_GET_WEBHOOK_EVENT_RESPONSE.php"
}
}
在 MY_SITE_URL_TO_GET_WEBHOOK_EVENT_RESPONSE.php 文件中,我编写了如下代码,
<?php
$headers =array();
foreach (getallheaders() as $name => $value) {
$headers[$name] = $value;
}
$myfile = "webhookResponse.txt";
$fh = fopen($myfile, 'a');
fwrite($fh, $_POST."\n");
fclose($fh);
http_response_code(200);
return json_encode(["xAdobeSignClientId" => $headers["X-AdobeSign-ClientId"]]);
?>
当我发起创建 webhook 的请求时,
它给了我如下回应,
{
"code": "INVALID_API_ACCESS_POINT",
"message": "Request must be made to correct API access point (e.g. use GET /baseUris)."
}
响应代码为 403。
这个问题怎么解决???
如何使用 adobe echosine 创建 webhook?