You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not directly related to the proxy issue, but I had to change my proxy URL from a binary (Elixir String) to a charlist.
I set the hackney options by implementing process_request_options, which receives any connection options passed to the request and transforms them in whatever way you want. In my case, this did the trick:
# host needs to be a charlist, not a binary/stringoptions|>Keyword.put(:proxy,{:socks5,host,port})
traffic went through proxy , and failed with error checkout_failure. Does anyone know this issue?
httpoison version 1.8 and hackney version 1.17.4. with default options + proxy setting + cacert setting for httpoison
The text was updated successfully, but these errors were encountered: