更改错误java.io.IOException:接收的身份验证质询为null

时间:2014-07-08 12:14:12

标签: java android http retrofit

我尝试使用HttpPost发送一个id应用程序,但当我尝试使用Retrofit执行此操作时,我有例外:

java.io.IOException: Received authentication challenge is null

以下是发布应用程序ID的方法:

  @POST("/acces_token")
  @Headers({ "Content-type: application/json" })
  Response identifierApplication(@Header("X-FTVEN-ID") String header);

我在谷歌搜索但是我没有在改造时发现这个错误。

感谢您的回复

1 个答案:

答案 0 :(得分:0)

尝试添加:

@Headers({ "WWW-Authenticate: None"})

根据这个问题:IOException: "Received authentication challenge is null" (Apache Harmony/Android)