我尝试使用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);
我在谷歌搜索但是我没有在改造时发现这个错误。
感谢您的回复
答案 0 :(得分:0)
尝试添加:
@Headers({ "WWW-Authenticate: None"})
根据这个问题:IOException: "Received authentication challenge is null" (Apache Harmony/Android)