I am trying to make a POST request but I can\'t get it done. Nothing is received on the other side.
Is this how it is supposed to work? I\'m aware of the PostForm fu
You have mostly the right idea, it's just the sending of the form that is wrong. The form belongs in the body of the request.
req, err := http.NewRequest("POST", url, strings.NewReader(form.Encode()))