标签: http cookies erlang
如何使用erlang http客户端 httpc 发送cookie内容?
答案 0 :(得分:3)
我相信这样:
Url = "http://example.org", httpc:request(get, {Url, [{"Cookie", "name1=value1;name2=value2"}]}.