SetCommonCookies set HTTP cookies for requests fired from the client.
(cookies ...*http.Cookie)
| 530 | |
| 531 | // SetCommonCookies set HTTP cookies for requests fired from the client. |
| 532 | func (c *Client) SetCommonCookies(cookies ...*http.Cookie) *Client { |
| 533 | c.Cookies = append(c.Cookies, cookies...) |
| 534 | return c |
| 535 | } |
| 536 | |
| 537 | // DisableDebugLog disable debug level log (disabled by default). |
| 538 | func (c *Client) DisableDebugLog() *Client { |
no outgoing calls