0

出于某种原因,POST 请求因超时而失败,而相应的 CURL 请求工作得非常好。会出什么问题?

工作卷曲请求:

curl -X POST \
    -H 'Content-Type: application/json' \
    -d '{"jwt": "jwt"}' \
    https://iam.api.cloud.yandex.net/iam/v1/tokens

不工作 Vert.xWebClient请求:

  @Test
  fun `get api token`(vertx: Vertx, testContext: VertxTestContext) {
    val webClient = WebClient.create(vertx)
    webClient.post(443, "iam.api.cloud.yandex.net", "iam/v1/tokens")
      .putHeader("Content-Type", "application/json")
      .ssl(true)
      .sendJsonObject(JsonObject().put("jwt", "test"), testContext.succeeding {
        testContext.verify {
          Assertions.assertEquals(200, it.statusCode())
          testContext.completeNow()
        }
      })
  }
4

0 回答 0