从错误响应获取数据时发生java.io.ioexception

col17t5w  于 2021-06-27  发布在  Java
关注(0)|答案(3)|浏览(383)

我实现了一个简单的post请求登录api。

val fuelRequest = Fuel.post(urlString)
    .header("Content-Type", "application/json")
    .header("Accept", "application/json")
    .jsonBody(UtilsString.getStringForDictionary(params))

fuelRequest.response() { _, response, result ->
    ...
    callback.onComplete(result)
}

当响应正常时,就没有问题了。当我试图从错误请求中获取数据响应时,问题就出现了。我得到的数据是:

{
    "code": 401,
    "error": "The specified credentials are invalid."
}

这是401未经授权的回应。我只是想从de request那里得到消息。如果我尝试 response.data 如果我尝试,它会抛出'java.io.ioexception'方法 result.component()2.response 它抛出方法抛出“android.os.networkonmainthreadexception”异常。如果尝试,则无法计算com.github.kittinunf.fuel.core.response.tostring() result.error.errorData 它抛出方法抛出“java.io.ioexception”
有什么线索能让我得到回应吗?

jhiyze9q

jhiyze9q1#

你可以得到这样的回应,然后对回应做任何你想做的事情。

Fuel.post("https://api.chui.ai/v1/enroll")
                            .header(headers)
                            .body(json.toString(), Charset.forName("UTF-8"))
                            .responseString(new com.github.kittinunf.fuel.core.Handler<String>() {

                            @Override
                            public void failure(@NotNull com.github.kittinunf.fuel.core.Request request,
                                                @NotNull com.github.kittinunf.fuel.core.Response response,
                                                @NotNull FuelError error) {
                                Log.d("Fuel.failure", error.getMessage());
                            }

                            @Override
                            public void success(@NotNull com.github.kittinunf.fuel.core.Request request,
                                                @NotNull com.github.kittinunf.fuel.core.Response response,
                                                String data) {
                                // data is a string, parse as using you fav json library
                                Log.d("Fuel.success", data);
                            }
xqk2d5yq

xqk2d5yq2#

我无法在注解中添加代码段,但下面是代码段。你可以接受这样的请求,并根据你的用例做任何你想做的事情。

import com.github.kittinunf.fuel.Fuel
import com.github.kittinunf.fuel.core.FuelError
import com.github.kittinunf.result.Result

private class ResponseError(
        val statusCode: Int,
        val statusMessage: String,
        val errorMessage: String
) : RuntimeException("[%d - %s] %s".format(statusCode, statusMessage, errorMessage))

fun main(args: Array<String>) {

    val (request, response, result) = Fuel.post("http://httpbin.org/post").responseString()

    when (result) {
        is Result.Failure -> onError(result)
    }
    print("done")
}

/**
 *
 */
fun onError(failureResult: Result.Failure<String, FuelError>) {
    throw ResponseError(
            statusCode = failureResult.error.response.statusCode,
            statusMessage = failureResult.error.response.responseMessage,
            errorMessage = failureResult.getErrorMessage())
}

/**
 *
 */
private fun Result.Failure<String, FuelError>.getErrorMessage(): String {
    return try {
        val string = String(this.error.errorData)
        print(string)
        string
    } catch (e: RuntimeException) {
        ""
    }
}
uidvcgyl

uidvcgyl3#

我复制了你的代码,如果我添加以下内容:

findViewById<FloatingActionButton>(R.id.fab).setOnClickListener { view ->
            val fuelRequest = Fuel.post("http://10.0.2.2:3000/")
                    .header("Content-Type", "application/json")
                    .header("Accept", "application/json")
                    .jsonBody(UtilsString.getStringForDictionary(params))

            fuelRequest.response() { _, response, _ ->
                println(String(response.data))
            }
}

我可以看到错误响应的主体。endpoint10.0.2.2:3000是一个小型的express.js应用程序,它只提供一个小的json。

app.post('/', function (req, res) {
  res.status(401).jsonp({ error: 'failed' })
});

相关问题