Postman 出现Error: Request path contains unescaped characters

advanced rest client遇到post请求无法提交(但是代码中用requests去post请求就可以),估计是因为没有开SSL,但是该应用 似乎并没有该选项,所以转用Postman,就一切顺利。

Postman出现
Could not get any response
用网上方法解决不了时,
可以打开Postman Console (View > Show Postman Console)
然后重新提交请求,看返回内容
如我这边报错信息为
Error: Request path contains unescaped characters
在这里插入图片描述
明显可以看到是因为url中有中文,我们选中中文部分
在这里插入图片描述 选择EncodeURIComponent,然后再访问就行了。