@POST 使用 Retrofit 和 Kotlin 请求

@POST request using Retrofit and Kotlin

当我尝试 POST 使用 Postman 时,一切正常:

POST
https://trackapi.nutritionix.com/v2/natural/nutrients

HEADERS

Content-Type : application/json
x-app-id : *******
x-app-key : *******
x-remote-user-id : 0

BODY

{
"query":"carrot"
}

结果

{
"foods": [
    {
        "food_name": "carrot",
        "brand_name": null,
        "serving_qty": 1,
        "serving_unit": "carrot",
        "serving_weight_grams": 46,
        "nf_calories": 16.1,
        "nf_total_fat": 0.08, .........

但是,当我在我的应用程序中尝试这个时,我得到了空响应。 我尝试了 2 种不同的方法,但不幸的是没有结果。

第一个:

@Headers(
    "Content-Type: application/json",
    "x-app-id: $NUTRITIONIX_APPLICATION_ID",
    "x-app-key: $NUTRITIONIX_API_KEY",
    "x-remote-user-id: 0",
)
@POST("v2/natural/nutrients")
suspend fun pushFoodNutrients(
    @Body query: String
): Response<FoodNutrientsResponse>

第二个:

@FormUrlEncoded
@Headers(
    "Content-Type: application/json",
    "x-app-id: $NUTRITIONIX_APPLICATION_ID",
    "x-app-key: $NUTRITIONIX_API_KEY",
    "x-remote-user-id: 0",
)
@POST("v2/natural/nutrients")
suspend fun pushFoodNutrientsTest(
    @Field("query") query: String
): Response<FoodNutrientsResponse>

我的错误在哪里?我在互联网上搜索了一整天,但什么也找不到。

所以,我找到了解决方案。

这个不错,但有一处改动。

@Headers(
"Content-Type: application/json",
"x-app-id: $NUTRITIONIX_APPLICATION_ID",
"x-app-key: $NUTRITIONIX_API_KEY",
"x-remote-user-id: 0",
)
@POST("v2/natural/nutrients")
suspend fun pushFoodNutrients(
@Body postModel: PostModel      // what I have changed
): Response<FoodNutrientsResponse>

我用一个字段查询创建了一个对象 PostModel,如下所示:

data class PostModel(
    val query: String
)

之后一切正常。