erlang 如何为'httpc'库设置代理服务器的用户名和密码?

tuwxkamq  于 2022-12-08  发布在  Erlang
关注(0)|答案(1)|浏览(136)

我尝试了以下方法,但没有成功:

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

还有

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

b1payxdu1#

:httpc.set_options/1需要属性列表。

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

相关问题