1

I've tried the following without success:

:httpc.set_options( proxy: {{'proxy.int.mycompany.com', 8080}, ['localhost'], proxy_auth: {'developer', 'developer'}})

And

:httpc.set_options(proxy:  { {'proxy.int.mycompany.com', 8080}, ['localhost'], {'proxy_auth', 'developer', 'developer'}})
arpit
  • 728
  • 7
  • 22

1 Answers1

0

:httpc.set_options/1 expects a proplist.

:httpc.set_options(
  proxy: {{'proxy.int.mycompany.com', 8080}, ['localhost']},
  proxy_auth: {'developer', 'developer'}
)
arpit
  • 728
  • 7
  • 22
Aleksei Matiushkin
  • 119,336
  • 10
  • 100
  • 160