For some reason, a POST requests fails with a timeout, while an according CURL request works perfectly fine. What could get wrong?
Working CURL request:
curl -X POST \
-H 'Content-Type: application/json' \
-d '{"jwt": "jwt"}' \
https://iam.api.cloud.yandex.net/iam/v1/tokens
Not working Vert.x WebClient
request:
@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()
}
})
}