Questions tagged «curl»

cURL是HTTP客户端库和命令行工具。

5
cURL或SSL问题,如何解决?
我不断收到此错误: No cURL data returned for https://XXX.XXXX.XXX:XXXX [0] SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed 我不确定,或者我可以说,我不知道这是什么问题。以及如何解决呢?请帮忙!

3
curl:(35)SSL连接错误
我试图向Twitter API发出cURL HTTPS请求,但出现此错误: [root@webscoming httpdocs]# curl -v https://api.twitter.com About to connect() to api.twitter.com port 443 (#0) Trying 199.16.156.199... connected Connected to api.twitter.com (199.16.156.199) port 443 (#0) Initializing NSS with certpath: sql:/etc/pki/nssdb CAfile: /etc/pki/tls/certs/ca-bundle.crt CApath: none NSS error -5990 Closing connection #0 SSL connect error curl: (35) SSL connect error 我已经从另一台服务器尝试过,它可以按预期工作。该错误是什么意思,我该如何解决? …
9 curl 

4
如何捕获LFTP的输出?(输出未写入STDOUT或STDERR吗?)
我想从lftp访问进度信息。目前,我正在像这样使用curl: curl http://example.com/file -o file -L 2> download.log 这会将curl的进度信息写入到download.log文件中,我可以跟踪该文件以获取实时进度。 但是对于lftp,stdout或stderr,该方法均无效。我最终得到一个空的download.log文件,直到传输完成。 lftp -e 'get http://example.com/file;quit' 2> download.log lftp -e 'get http://example.com/file;quit' 1> download.log 当我不重定向输出时,我会在屏幕上看到进度。当我重定向输出时,我停止在屏幕上看到进度,但是在download.log中什么都没有显示。文件传输完成后,我会看到最终结果,如下所示-但之前没有任何结果: 97618627 bytes transferred in 104 seconds (913.1K/s) lftp的输出是否有异常之处-打印到屏幕而不打印到stdout / stderr?除了重定向stdout / stderr之外,还有其他捕获屏幕输出的方法吗?
9 curl  stderr  stdout  ftp 

2
如何记录来自PHP + cURL的传出HTTP请求?
我设置了一个PHP脚本,该脚本在站点上执行操作时都会发出cURL请求。问题在于,每当运行操作时,该信息就会被发布两次。 如果这是我的问题(cURL被运行两次),或者它发布到的URL做两次,则需要解决。 我想最好的方法是查看服务器发出的http POST请求。 这是最好的选择吗?如果是这样,我该怎么做?
8 linux  ubuntu  php  curl 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.