如何使用Erlang httpc发送cookie

时间:2011-07-28 03:38:04

标签: http cookies erlang

如何使用erlang http客户端 httpc 发送cookie内容?

1 个答案:

答案 0 :(得分:3)

我相信这样:

Url = "http://example.org",
httpc:request(get,  {Url, [{"Cookie", "name1=value1;name2=value2"}]}.