gpt4 book ai didi

curl 'The system cannot find the file specified'

转载 作者:行者123 更新时间:2023-12-05 08:12:08 26 4
gpt4 key购买 nike

我正在努力设置一个 curl 命令行请求。当我提交请求时,我不断收到错误“系统找不到指定的文件”。我的 curl 命令行语句如下所示

"C:\Program Files\cURL\bin\curl" --verbose -G --compressed --tlsv1 https://xxx.xxx.com/api/v2/search/ -d 'pax=4' -d 'checkout=2015-08-27' -d 'checkin=2015-08-25' -d 'destination_code=19063' -d 'client_nationality=us' -d 'limit=2' --tlsuser xxx --tlspassword xxx  / > curlresponse.json

立即提交会产生错误。我不相信它甚至不会尝试与主机建立连接。 --verbose 甚至不生成任何输出。

如果我删除传递用户名和密码的选项 (--tlsuser xxx --tlspassword xxx) 并将命令行更新为以下内容

"C:\Program Files\cURL\bin\curl" --verbose -G --compressed --tlsv1 https://xxx.xxx.com/api/v2/search/ -d 'pax=4' -d 'checkout=2015-08-27' -d 'checkin=2015-08-25' -d 'destination_code=19063' -d 'client_nationality=us' -d 'limit=2' / > curlresponse.json

命令行确实与主机建立了连接,但由于缺少用户名和密码而无法完成请求。因此,问题似乎出在我传递用户名和密码的方式上。从命令行删除用户名和密码时出现的错误是 {"detail": "Authentication credentials were not provided."}

最佳答案

我想出了看起来有效的命令行选项。线路看起来如下

"C:\Program Files\cURL\bin\curl" --verbose -G --compressed --tlsv1 https://xxx.xxx.com/api/v2/search/ -d "pax=4&checkout=2015-08-27&checkin=2015-08-25&destination_code=19063&client_nationality=us&limit=2" --user "xxx:xxx" / > curlresponse.json

关于 curl 'The system cannot find the file specified',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30313548/

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