I started to deal with Colly. I am trying to set a proxy for every request. But all requests do not go through a proxy
It should work https://github.com/gocolly/colly/blob/master/request.go#L52
I have added this to my code. But requests go without a proxy as before
c.OnRequest(func(r *colly.Request) {
r.ProxyURL = "..."
}
Maybe I didn’t understand correctly how this should work