第一个错误
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);
我觉得把代码贴上来还是比较好的..