grequests icon indicating copy to clipboard operation
grequests copied to clipboard

A Go "clone" of the great and famous Requests library

Results 35 grequests issues
Sort by recently updated
recently updated
newest added

func (s *Session) combineRequestOptions(ro *RequestOptions) *RequestOptions{} this func not combine cookies to every request by session

Hey there! I belong to an open source security research community, and a member (@ranjit-git) has found an issue, but doesn’t know the best way to disclose it. If not...

http request often appear error : "dial tcp ->10.20.33.66:80: i/o timeout" . I need to do response.close ? Who can help me,thank you

Hi, So basically if **Proxies** are added at the time of creating Session it works but on sending request Like Get or Post it doesn't work **Using Proxy while creating...

``` s := grequests.NewSession(&grequests.RequestOptions{ Headers: map[string]string{ "Host": "202.192.18.32:8080", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Upgrade-Insecure-Requests": "1", "Cache-Control": "max-age=0",...

`grequests` is a great http client library. I like to use it to replace golang default http client. But in some case, I want to build `Response` from `http.Response`. I...

I received a file through gin's c.FormFile. file, err := c.FormFile("image") How can i send it to other server through grequests? Thanks.

There is currently no way to specify these options other than supplying an instance of httpClient in `RequestOptions` as `ro.HTTPClient`. But if we do that, we have to keep track...