Charles复制出的CURL无法导入PostMan

Charles复制出的CURL无法导入PostMan


如图所示,复制CURL Request

image

当复制出来的Charles CURL数据不能成功导入PostMan,如下所示

image

这时候查看复制出来的数据:

curl -H 'Host: xxx.com' -H 'Accept: application/json' -H 'User-Agent: kwai-ios' -H 'Accept-Language: zh-Hans-CN;q=1' --compressed 'http://xxx.com'

问题出现在结尾网址,请将结尾网址提到最前面就可以了。

curl 'http://xxx.com' -H 'Host: xxx.com' -H 'Accept: application/json' -H 'User-Agent: kwai-ios' -H 'Accept-Language: zh-Hans-CN;q=1' --compressed

这样就OK了

你可能感兴趣的:(Charles复制出的CURL无法导入PostMan)