DisableAllowGetMethodPayload disable sending GET method requests with body.
()
| 1357 | |
| 1358 | // DisableAllowGetMethodPayload disable sending GET method requests with body. |
| 1359 | func (c *Client) DisableAllowGetMethodPayload() *Client { |
| 1360 | c.AllowGetMethodPayload = false |
| 1361 | return c |
| 1362 | } |
| 1363 | |
| 1364 | // EnableAllowGetMethodPayload allows sending GET method requests with body. |
| 1365 | func (c *Client) EnableAllowGetMethodPayload() *Client { |
no outgoing calls