hellman
05/26/2025, 10:45 AMHttpStatement
and then inspect all the parts (method, headers, and raw body) to create the signing of the request (AWS v4 signing). I thought I could use preparePost()
like this, but that doesn't give me access to the details. Is there some other way to do this?
val statement = httpsClient.preparePost(url) {
setBody(signedRequest.body)
headers {
contentType(ContentType.Application.Json)
accept(ContentType.Application.Json)
}
}
// Read the HTTP request properties from statement not possible?
hellman
05/26/2025, 10:48 AMHttpStatement
so we can amend it with additional details (like the signed headers we get from AWS).Aleksei Tirman [JB]
05/26/2025, 12:26 PM