我使用Erlang的HTTP:请求一些数据发布到远程服务。 我有交工作,但数据在主体()的柱来通过按原样,没有任何URL编码这导致交当由远程服务解析失败。
有没有在二郎一个功能类似于CGI.escape在Ruby中用于此目的?
我使用Erlang的HTTP:请求一些数据发布到远程服务。 我有交工作,但数据在主体()的柱来通过按原样,没有任何URL编码这导致交当由远程服务解析失败。
有没有在二郎一个功能类似于CGI.escape在Ruby中用于此目的?
你可以在这里找到YAWS url_encode和url_decode程序
他们是相当简单的,虽然评论表明编码不是100%完成所有的标点字符。
我遇到的缺乏在HTTP模块此功能为好。
事实证明,这个功能是在Erlang分布实际可用的,你只是爱看够硬。
> edoc_lib:escape_uri("luca+more@here.com").
"luca%2bmore%40here.com"
这种行为就像CGI.escape在Ruby中,也有URI.escape其行为略有不同:
> CGI.escape("luca+more@here.com")
=> "luca%2Bmore%40here.com"
> URI.escape("luca+more@here.com")
=> "luca+more@here.com"
edoc_lib
至少在R15有http_uri:编码/ 1该做这项工作。 我也不会建议使用edoc_lib:escape_uri作为其翻译的“=”的%3D,而非%3D这引起了我一些麻烦。
这里有一个简单的功能,没有工作。 它的设计直接与inets httpc工作。
%% @doc A function to URL encode form data.
%% @spec url_encode(formdata()).
-spec(url_encode(formdata()) -> string()).
url_encode(Data) ->
url_encode(Data,"").
url_encode([],Acc) ->
Acc;
url_encode([{Key,Value}|R],"") ->
url_encode(R, edoc_lib:escape_uri(Key) ++ "=" ++ edoc_lib:escape_uri(Value));
url_encode([{Key,Value}|R],Acc) ->
url_encode(R, Acc ++ "&" ++ edoc_lib:escape_uri(Key) ++ "=" ++ edoc_lib:escape_uri(Value)).
实例:
httpc:request(post, {"http://localhost:3000/foo", [],
"application/x-www-form-urlencoded",
url_encode([{"username", "bob"}, {"password", "123456"}])}
,[],[]).
要回答我的问题...我发现这个LIB在ibrowse!
http://www.erlware.org/lib/5.6.3/ibrowse-1.4/ibrowse_lib.html#url_encode-1
url_encode/1
url_encode(Str) -> UrlEncodedStr
Str = string()
UrlEncodedStr = string()
URL编码基于RFC 1738的字符串返回一个平坦的列表。
我想我可以用这个做编码,并仍使用http:
如果有人需要编码,在二郎使用UTF-8的工作URI:
https://gist.github.com/3796470
防爆。
Eshell V5.9.1 (abort with ^G)
1> c(encode_uri_rfc3986).
{ok,encode_uri_rfc3986}
2> encode_uri_rfc3986:encode("テスト").
"%e3%83%86%e3%82%b9%e3%83%88"
3> edoc_lib:escape_uri("テスト").
"%c3%86%c2%b9%c3%88" # output wrong: ƹÈ
这里有一个在edoc_lib的“叉”:即提高了对UTF-8支持,同时也escape_uri功能支持二进制文件。
escape_uri(S) when is_list(S) ->
escape_uri(unicode:characters_to_binary(S));
escape_uri(<<C:8, Cs/binary>>) when C >= $a, C =< $z ->
[C] ++ escape_uri(Cs);
escape_uri(<<C:8, Cs/binary>>) when C >= $A, C =< $Z ->
[C] ++ escape_uri(Cs);
escape_uri(<<C:8, Cs/binary>>) when C >= $0, C =< $9 ->
[C] ++ escape_uri(Cs);
escape_uri(<<C:8, Cs/binary>>) when C == $. ->
[C] ++ escape_uri(Cs);
escape_uri(<<C:8, Cs/binary>>) when C == $- ->
[C] ++ escape_uri(Cs);
escape_uri(<<C:8, Cs/binary>>) when C == $_ ->
[C] ++ escape_uri(Cs);
escape_uri(<<C:8, Cs/binary>>) ->
escape_byte(C) ++ escape_uri(Cs);
escape_uri(<<>>) ->
"".
escape_byte(C) ->
"%" ++ hex_octet(C).
hex_octet(N) when N =< 9 ->
[$0 + N];
hex_octet(N) when N > 15 ->
hex_octet(N bsr 4) ++ hex_octet(N band 15);
hex_octet(N) ->
[N - 10 + $a].
需要注意的是,因为使用Unicode的:characters_to_binary它只会在R13或更新工作。
AFAIK有一个在标准库没有URL编码器。 我想“借”从YAWS下面的代码或其他Erlang的Web服务器也许有:
% Utility function to convert a 'form' of name-value pairs into a URL encoded
% content string.
urlencode(Form) ->
RevPairs = lists:foldl(fun({K,V},Acc) -> [[quote_plus(K),$=,quote_plus(V)] | Acc] end, [],Form),
lists:flatten(revjoin(RevPairs,$&,[])).
quote_plus(Atom) when is_atom(Atom) ->
quote_plus(atom_to_list(Atom));
quote_plus(Int) when is_integer(Int) ->
quote_plus(integer_to_list(Int));
quote_plus(String) ->
quote_plus(String, []).
quote_plus([], Acc) ->
lists:reverse(Acc);
quote_plus([C | Rest], Acc) when ?QS_SAFE(C) ->
quote_plus(Rest, [C | Acc]);
quote_plus([$\s | Rest], Acc) ->
quote_plus(Rest, [$+ | Acc]);
quote_plus([C | Rest], Acc) ->
<<Hi:4, Lo:4>> = <<C>>,
quote_plus(Rest, [hexdigit(Lo), hexdigit(Hi), ?PERCENT | Acc]).
revjoin([], _Separator, Acc) ->
Acc;
revjoin([S | Rest],Separator,[]) ->
revjoin(Rest,Separator,[S]);
revjoin([S | Rest],Separator,Acc) ->
revjoin(Rest,Separator,[S,Separator | Acc]).
hexdigit(C) when C < 10 -> $0 + C;
hexdigit(C) when C < 16 -> $A + (C - 10).