gpt4 book ai didi

python - pycurl 失败但 curl(来自 bash)在 ubuntu 中工作

转载 作者:太空宇宙 更新时间:2023-11-03 15:29:40 25 4
gpt4 key购买 nike

我正在使用 curl 和 pycurl 连接到安全的第 3 方 api,当我使用 pycurl 时,我从服务器返回身份验证错误,但是当我在命令行上使用 curl 并执行相同的操作时,它会起作用.我将两者都设置为详细模式,并在请求中看到了一些差异,但我似乎无法弄清楚错误是什么。

他们似乎使用不同的加密方法,也许这就是问题所在?如果有人对尝试使用 pycurl 的不同选项有任何想法,或者对重新编译 pycurl 以使其像 curl 一样工作的建议,那就太棒了。谢谢。

这是我的 pycurl 设置,仅供引用:

    buffer = cStringIO.StringIO()

curl = pycurl.Curl()
curl.setopt(pycurl.VERBOSE,1)
curl.setopt(pycurl.POST, 1)
curl.setopt(pycurl.POSTFIELDS, post_data)
curl.setopt(pycurl.TIMEOUT_MS, self.HTTP_TIMEOUT)
curl.setopt(pycurl.URL, url)
curl.setopt(pycurl.FOLLOWLOCATION, self.HTTP_FOLLOW_REDIRECTS)
curl.setopt(pycurl.MAXREDIRS, self.HTTP_MAX_REDIRECTS)
curl.setopt(pycurl.WRITEFUNCTION, buffer.write)
curl.setopt(pycurl.NOSIGNAL, 1)
curl.setopt(pycurl.SSLCERT, self.path_to_ssl_cert)

curl.setopt(pycurl.SSL_VERIFYPEER, 0)

# 1/0

try:
curl.perform()

...

哦,最后一件事:我正在使用的同一 python 脚本在我的 Mac 笔记本电脑上工作,但在我尝试设置的 ubuntu 服务器上不起作用。

python test.py 
18:09:13,299 root INFO fetching: https://secure.....
* About to connect() to secure.... 1129 (#0)
* Trying 216....... * connected
* Connected to secure.... port 1129 (#0)
* found 102 certificates in /etc/ssl/certs/ca-certificates.crt
* server certificate verification OK
* common name: secure.... (matched)
* server certificate expiration date OK
* server certificate activation date OK
* certificate public key: RSA
* certificate version: #3
* subject: .......
* start date: Sat, 14 Feb 2009 22:45:27 GMT
* expire date: Mon, 15 Feb 2010 22:45:27 GMT
* issuer: ...
* compression: NULL
* cipher: AES 128 CBC
* MAC: SHA
User-Agent: PycURL/7.16.4
Host: secure....
Accept: */*
Content-Length: 387
Content-Type: application/x-www-form-urlencoded

< HTTP/1.1 200 OK
< Content-Length: 291
<
* Connection #0 to host secure.... left intact
* Closing connection #0


curl -v -d '...' --cert cert.pem https://secure....
* About to connect() to secure.... port 1129 (#0)
* Trying 216....... connected
* Connected to secure.... port 1129 (#0)
* successfully set certificate verify locations:
* CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: none
* SSLv2, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Request CERT (13):
* SSLv3, TLS handshake, Server finished (14):
* SSLv3, TLS handshake, CERT (11):
* SSLv3, TLS handshake, Client key exchange (16):
* SSLv3, TLS handshake, CERT verify (15):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSLv3, TLS change cipher, Client hello (1):
* SSLv3, TLS handshake, Finished (20):
* SSL connection using AES256-SHA
* Server certificate:
* subject: .......
* start date: 2009-02-14 22:45:27 GMT
* expire date: 2010-02-15 22:45:27 GMT
* common name: secure.... (matched)
* issuer: ... Certificate Authority
* SSL certificate verify ok.
> User-Agent: curl/7.16.4 (i486-pc-linux-gnu) libcurl/7.16.4 OpenSSL/0.9.8e zlib/1.2.3.3 libidn/1.0
> Host: secure....:1129
> Accept: */*
> Content-Length: 387
> Content-Type: application/x-www-form-urlencoded
>
< HTTP/1.1 200 OK
< Content-Length: 342

最佳答案

Ubuntu pycurl 使用 GnuTLS 而 ubuntu curl 命令行使用 OpenSSL。存在差异,例如支持的证书格式。

我个人无法理解 ubuntu 开发者/打包者做出的这个决定。我偶然发现了这个问题并且无法解决它,幸运的是除了 ubuntu 之外还有其他发行版:-)

你总是可以尝试提示“对他人的人道”。

关于python - pycurl 失败但 curl(来自 bash)在 ubuntu 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/568247/

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