当前位置: 首页 > 知识库问答 >
问题:

未找到带有卷曲的文件

裴兴言
2023-03-14

我在一天中做了一些API调用,但在使用Adobe Sign的新设置时遇到了问题。我可以得到请求很好,但得到HTTP404时,尝试任何张贴或放入他们的服务器。例如,到这里....

robert@media:/www/assets/adobe$ php agreement_send.php
*   Trying 166.78.79.125...
* Connected to api.echosign.com (166.78.79.125) port 443 (#0)
* ALPN, offering http/1.1
* Cipher selection:     ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
*   CAfile: /etc/ssl/certs/ca-certificates.crt
    CApath: /etc/ssl/certs
* SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384
* ALPN, server did not agree to a protocol
* Server certificate:
*   subject: C=US; ST=California; L=San Jose; O=Adobe Systems Incorporated; CN=secure.echosign.com
*   start date: Apr 18 22:00:04 2016 GMT
*   expire date: Dec 18 23:10:02 2017 GMT
*   subjectAltName: api.echosign.com matched
*   issuer: C=BE; O=GlobalSign nv-sa; CN=GlobalSign Organization Validation CA - SHA256 - G2
*   SSL certificate verify ok.
> POST /api/rest/v5/agreements HTTP/1.1
Host: api.echosign.com
Accept: */*
Access-Token: <snip>verified access token</snip>
x-api-user: email:me@myplace.org
Content-Length: 485
Content-Type: application/x-www-form-urlencoded

* upload completely sent off: 485 out of 485 bytes
< HTTP/1.1 404 Not Found
< Date: Wed, 31 Aug 2016 17:25:36 GMT
< Server: Apache
< x-request-id: 6b0a6a93-4b2d-42da-a7e3-148c27f4541e
< Content-Length: 51
< Strict-Transport-Security: max-age=31536000;
< P3P: CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
< X-Robots-Tag: none
< Content-Type: application/json;charset=UTF-8
<
* Connection #0 to host api.echosign.com left intact
HTTP Code: 404
{"documentCreationInfo":{"fileInfos":{"libraryDocumentName":"My Doc"},"name":"Please sign my doc","recipientSetInfos":{"recipientSetMemberInfos":{"email":"my@myplace.com"},"recipientSetRole":"SIGNER"},"signatureType":"ESIGN","signatureFlow":"SENDER_SIGNATURE_NOT_REQUIRED","externalID":{"id":"83807"},"mergeFieldInfo":{"defaultValue":"Robert","fieldName":"Name"},"message":"Please provide electronic signature to initiate your membership using EFT"}}
stdClass Object
(
    [code] => NOT_FOUND
    [message] => Resource not found
)
$url = 'https://api.echosign.com/api/rest/v5/agreements';
$ch = curl_init();
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

当然,$HttpCode返回404,如上图所示。我为邮局做错什么了吗?

共有1个答案

申屠乐池
2023-03-14

根据文档,我认为您对target$URL的选择是错误的。试试这个。(区别是和你的“纳1”)

$url = 'https://api.na1.echosign.com:443/api/rest/v5/agreements'

有关更多信息,请参见以下链接(在您的示例中,是开放协议部分)https://secure.na1.echosign.com/public/docs/restapi/v5

 类似资料:
  • 我安装了php7下载从repo的windows,所有工作良好。我正面临启用curl的问题。php_curl.dll文件存在于文本文件夹中,此扩展在php.ini中未注释,但此模块未显示在phpinfo中。 只有在运行php5时,我才能使用php7面对这个问题。x旋度很好用。正在寻找解决此问题的解决方案。这是php7本身的问题。是否有解决此问题的方法?

  • 我正在使用ehcache和Spring。最近注意到以下错误。现在,XSD文件在http://ehcache-spring-annotations.googlecode.com/svn/schema/ehcache-spring/ehcache-spring-1.1.xsd. 请告诉我是否有在本地加载XSD的解决方案。 原因:java。伊奥。FileNotFoundException:http://

  • 我试图将一个文件发布到spring boot中使用Curl实现的restfulendpoint,但它抛出以下错误: 我一定是错过了一些基本的东西,但却看不出是什么。它正在寻找请求参数'file',但不确定如何通过curl发送。 提前致谢 更新: 我在下面的链接中尝试了解决方案

  • 问题内容: 您好,这里是我们的Podspec,它具有和可选的子规范(由于已经设置了默认值,因此不会使用)。该子规格具有更多功能,但需要额外的8MB大小… 现在,在我们的mainSDK中,我们在 #if canImport(additionalSDK)中 包含了AdditionalSDK,然后在 这些编译器标志 之间提供了与AdditionalSDK 相关的代码 ,如下所示: 但是,客户端集成了我们

  • 我可以通过一个CURL请求发布到我用C#从PHP编写的web服务,但是我无法正确地完成请求。无论我做什么,我能让帖子显示出来的唯一方法是我表单数据头。因此,我的PHP代码最终是这样的: 当我设定路线时: 到: PHP中没有错误,C#服务不返回错误(我在配置中设置了返回异常),函数上的断点永远不会被命中。 在C#端,我的接口和服务设置如下: 当断点命中时,我能够看到的值为: 我希望的值简单地为: 有

  • 问题内容: 我在SO上看到了与此类似的帖子,但与我要执行的操作不完全相同(或者至少没有要运行的命令的完整示例)。 我正在尝试使用curl远程触发Jenkins的参数化构建。我启用了“防止跨站请求伪造”,因此我还需要传递有效的碎屑。 我的脚本如下: 我还尝试将要传递给curl的URL修改为: 和 curl的输出是: 因此,看来我没有正确传递面包屑,但是我不确定命令的正确格式是什么。 问题答案: 正确