大家好,我是新来的,我正在使用
implementation 'com.squareup.retrofit2:retrofit:2.6.1'
// JSON Parsing
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
我正在进行一个API调用来登录。调用成功(我可以在我添加的拦截器中看到200响应),但我仍然在翻新中得到onFailure回调,java.lang.IllegalStateException: closed
是可抛出的。我在Retrofit类中添加了一些断点,看起来它在解析我的响应时出现。我还使用了Kotlin
下面是我的数据类:
data class LoginResponse(
@SerializedName("payload") @Expose val payload: Payload,
@SerializedName("status") @Expose val status: Int
)
data class Payload(
@SerializedName("access_token") @Expose val access_token: String?,
@SerializedName("expires_at") @Expose val expires_at: String?,
@SerializedName("name") @Expose val name: String?,
@SerializedName("org_name") @Expose val org_name: String?,
@SerializedName("request_at") @Expose val request_at: String,
@SerializedName("status_message") @Expose val status_message: String
)
下面是我创建改造示例的方法:
private val okHttpClient = OkHttpClient.Builder().addInterceptor(Interceptor {
Log.w("Retrofit@Request", it.request().toString())
val requestBuilder = it.request().newBuilder()
requestBuilder.header("Content-Type", "application/json")
val response = it.proceed(it.request())
Log.w("Retrofit@Response", response.body()!!.string()) //correct 200 response with json is printed out here
return@Interceptor response
}).build()
val retrofitInstance: Retrofit
get() {
if (retrofit == null) {
retrofit = Retrofit.Builder()
.baseUrl(BASE_URL)
.client(okHttpClient)
.addConverterFactory(GsonConverterFactory.create())
.build()
}
return retrofit!!
}
我是这样打电话的:
loginService.login(logindata).enqueue(object : Callback<LoginResponse> {
override fun onFailure(call: Call<LoginResponse>, t: Throwable) {
Log.d(TAG, "Login failure "+t) //this is getting invoked with java.lang.IllegalStateException: closed
}
override fun onResponse(
call: Call<LoginResponse>,
response: Response<LoginResponse>
) {
onLoginState.value = true
}
})
我花了很多时间试图弄清楚发生了什么,找不到我在这里做错了什么。我也试着用莫希替换GSON,这给了我同样的错误。请帮助我弄清楚这里的问题。
先谢谢你。
1条答案
按热度按时间brtdzjyr1#
我不知道这是否有帮助,但请尝试读取this thread,并尝试删除日志
Log.w("Retrofit@Response", response.body()!!.string())
或替换为该线程中的提示理由:body的
string()
在内存中存放到变量content
中,所以我们不需要关心状态是否关闭。