Hey, I’ve been there too! For resty use socks5 proxy, I found that setting up a custom HTTP client with the proxy settings first, then passing it to resty, works pretty well.
Here’s a quick example:
```go
proxyURL, _ := url.Parse("socks5://proxyaddress:port")
transport := &http.Transport{Proxy: http.ProxyURL(proxyURL)}
client := resty.New().SetTransport(transport)
```
Hope this helps!
Here’s a quick example:
```go
proxyURL, _ := url.Parse("socks5://proxyaddress:port")
transport := &http.Transport{Proxy: http.ProxyURL(proxyURL)}
client := resty.New().SetTransport(transport)
```
Hope this helps!
