There is a running server where you can create a new user. To do so, you need to use a POST HTTP request to the address http://127.0.0.1:8080/user. To make a valid request to the server, you need to specify a not-empty name in the body of request, and the server will respond you with the id of the newly created user. Please, print the received id, and you'll solve the task!
To make a post request with a body, you can use the example from the theory step:
http.Post(serverAddress, "text/plain", bytes.NewBufferString(name))