HTTPS request using volley(使用 volley 的 HTTPS 请求)
问题描述
有人可以告诉我任何示例如何使用 volley 库执行 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 will be grateful for any help
推荐答案
我也四处寻找答案.对我来说,我发现它就像更改我的请求 URL 一样简单:
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...
当我尝试向根域发出请求时,我收到了来自服务器的 301 响应,因为它试图重定向到 www 子域.请记住您的 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!
这篇关于使用 volley 的 HTTPS 请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 volley 的 HTTPS 请求


基础教程推荐
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01