http.Post
func (c *Client) Post(
url,
contentType string,
body io.Reader
) (resp *Response, err error)
Post issues a POST to the specified URL. The caller must close the resp.Body when finished reading. If the provided body is an io.Closer, it will be closed after the request. To define custom headers,
use NewRequest and Client.Do.