We send the following POST request:
In the page handler we output the name parameter to the POST console:
post("/page") {
val formParameters = call.receiveParameters()
println(formParameters["name"])
}Which name will be displayed in the console?
Try running this code in the IDE and look at the console output.