问题描述
有人可以向我展示任何示例,如何使用排球库执行POST或GET请求,并使用知名CA颁发的证书对服务器进行处理吗?与标准http请求相比,我是否需要更改任何内容?
Could somebody show me any example how execute POST or GET request using volley library to server with certificate issued by a well known CA? Do I have to change anything compare to standard http request?
我阅读了本教程- http://ogrelab. ikratko.com/using-android-volley-with-self-signed-certificate/,但这与自签名SSL证书有关.
I read this tutorial - http://ogrelab.ikratko.com/using-android-volley-with-self-signed-certificate/ but it's is about self-signed SSL certificate.
感谢您的帮助
推荐答案
我环顾四周,也找到了答案.对我来说,我发现将请求网址从以下位置更改很容易:
I looked around to find an answer for this also. For me, I found it was as easy as changing my request URL from:
http://www.myserver.com/whatever
到
https://www.myserver.com/whatever
这可能取决于您的服务器和DNS设置.例如,我重定向了我的根域:
This may depend on your server and DNS settings. For instance, I redirect my root domain:
https://myserver.com
至https://www.myserver.com
.这是Heroku的事情...
https://myserver.com
to https://www.myserver.com
. It's a Heroku thing...
当我尝试向根域发出请求时,服务器尝试重定向到www子域时收到了301个响应.只要记住您的DNS设置即可.希望这对某人有帮助!
When I tried to make requests to the root domain, I got 301 responses from the server as it tried to redirect to the www subdomain. Just keep in mind your DNS settings. Hope this helps someone!
这篇关于使用截击的HTTPS请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!