gpt4 book ai didi

curl - 要求 postman 提供作品,但不要求cURL提供作品

转载 作者:行者123 更新时间:2023-12-01 04:35:33 25 4
gpt4 key购买 nike

我有一个非常简单的Postman请求,在Postman中工作得很好。这只是对以下URL的GET请求:
http://www.toysrus.com/storefrontsearch/stores.jsp?skuId=24654884&quantity=1&postalCode=48103&latitude&longitude&productId=107531766&startIndexForPagination=0&searchRadius=0&pageType=product&ispu_or_sts=null&displayAllStoresFlag=false&displayAllStoreLink=false
如果我要求 postman 为我提出一个cURL请求,它会给我以下信息:
curl -X GET \
'http://www.toysrus.com/storefrontsearch/stores.jsp?skuId=24654884&quantity=1&postalCode=48103&latitude=&longitude=&productId=107531766&startIndexForPagination=0&searchRadius=0&pageType=product&ispu_or_sts=null&displayAllStoresFlag=false&displayAllStoreLink=false' \
-H 'cache-control: no-cache' \
-H 'postman-token: b4ae79c0-c3f0-8247-8c2f-306c43376039'

结果是它永远挂着,永远不会给我任何回应。

知道如何使cURL请求正常工作吗?

最佳答案

似乎服务器已禁止curl用户代理,还需要设置cookie的troute=t1,否则它将返回404:

curl -L -H 'User-Agent: Mozilla' \
-H 'Cookie: troute=t1;' \
'http://www.toysrus.com/storefrontsearch/stores.jsp?skuId=24654884&quantity=1&postalCode=48103&latitude&longitude&productId=107531766&startIndexForPagination=0&searchRadius=0&pageType=product&ispu_or_sts=null&displayAllStoresFlag=false&displayAllStoreLink=false' --compressed

关于curl - 要求 postman 提供作品,但不要求cURL提供作品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44889150/

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