RxAndroid Retrofit okHttp 访问网络 post 请求 报错解决方案
第一个错误
retrofit.RetrofitError: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
这是因为 访问 的是https 的请求,报的 安全认证 的错误,
解决安全认证错误的链接
第二个错误
Caused by: retrofit.RetrofitError: method POST must have a request body
这是因为 Retrofit 用的注解不正确
以下是正确例子
@FormUrlEncoded
@POST("/my/url/path")
Result postToServer(
@Field("user_name") String userName);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我觉得把代码贴上来还是比较好的..
添加信任证书,或者忽略HTTPS证书验证