1

我目前正在使用带有以下请求的 Inets:

http:request(put, {Url, [{"User-Agent", UA}, {"Content-type", 
             "application/json"}]}, Bodytext, []),

但请求失败。

有什么建议么?

4

2 回答 2

1

ibrowse:start().

ibrowse:send_req(Url, Headers, put, Body).

或者

ibrowse:send_req(Url, Headers, put, Body, Options).

于 2010-06-23T21:50:18.700 回答
0

试试这个:http:request(put, {Url, [{"User-Agent", UA}], "application/json", Bodytext}, [], [])

于 2010-06-23T18:08:53.363 回答