URL encode in Erlang - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T21:39:21Z http://stackoverflow.com/feeds/question/114196 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114196/url-encode-in-erlang 4 URL encode in Erlang davidsmalley 2008-09-22T10:44:07Z 2009-08-11T12:56:58Z <p>I'm using erlang http:request to post some data to a remote service. I have the post working but the data in the body() of the post comes through as is, without any url encoding which causes the post to fail when parsed by the remote service.</p> <p>Is there a function in Erlang that is similar to CGI.escape in Ruby for this purpose?</p> http://stackoverflow.com/questions/114196/url-encode-in-erlang/114223#114223 0 Answer by tonys for URL encode in Erlang tonys 2008-09-22T10:54:43Z 2008-09-22T10:54:43Z <p>AFAIK there's no URL encoder in the standard libraries. Think I 'borrowed' the following code from YAWS or maybe one of the other Erlang web servers:</p> <pre><code>% Utility function to convert a 'form' of name-value pairs into a URL encoded % content string. urlencode(Form) -&gt; RevPairs = lists:foldl(fun({K,V},Acc) -&gt; [[quote_plus(K),$=,quote_plus(V)] | Acc] end, [],Form), lists:flatten(revjoin(RevPairs,$&amp;,[])). quote_plus(Atom) when is_atom(Atom) -&gt; quote_plus(atom_to_list(Atom)); quote_plus(Int) when is_integer(Int) -&gt; quote_plus(integer_to_list(Int)); quote_plus(String) -&gt; quote_plus(String, []). quote_plus([], Acc) -&gt; lists:reverse(Acc); quote_plus([C | Rest], Acc) when ?QS_SAFE(C) -&gt; quote_plus(Rest, [C | Acc]); quote_plus([$\s | Rest], Acc) -&gt; quote_plus(Rest, [$+ | Acc]); quote_plus([C | Rest], Acc) -&gt; &lt;&lt;Hi:4, Lo:4&gt;&gt; = &lt;&lt;C&gt;&gt;, quote_plus(Rest, [hexdigit(Lo), hexdigit(Hi), ?PERCENT | Acc]). revjoin([], _Separator, Acc) -&gt; Acc; revjoin([S | Rest],Separator,[]) -&gt; revjoin(Rest,Separator,[S]); revjoin([S | Rest],Separator,Acc) -&gt; revjoin(Rest,Separator,[S,Separator | Acc]). hexdigit(C) when C &lt; 10 -&gt; $0 + C; hexdigit(C) when C &lt; 16 -&gt; $A + (C - 10). </code></pre> http://stackoverflow.com/questions/114196/url-encode-in-erlang/114273#114273 4 Answer by davidsmalley for URL encode in Erlang davidsmalley 2008-09-22T11:07:10Z 2008-09-22T11:07:10Z <p>To answer my own question...I found this lib in ibrowse!</p> <p><a href="http://www.erlware.org/lib/5.6.3/ibrowse-1.4/ibrowse_lib.html#url_encode-1" rel="nofollow">http://www.erlware.org/lib/5.6.3/ibrowse-1.4/ibrowse_lib.html#url_encode-1</a></p> <pre><code>url_encode/1 url_encode(Str) -&gt; UrlEncodedStr Str = string() UrlEncodedStr = string() </code></pre> <p>URL-encodes a string based on RFC 1738. Returns a flat list.</p> <p>I guess I can use this to do the encoding and still use http:</p> http://stackoverflow.com/questions/114196/url-encode-in-erlang/119526#119526 4 Answer by Bwooce for URL encode in Erlang Bwooce 2008-09-23T07:17:03Z 2008-09-23T07:17:03Z <p>You can find here the <a href="http://erlyaws.svn.sourceforge.net/viewvc/erlyaws/trunk/yaws/src/yaws_api.erl?revision=1277&amp;view=markup" rel="nofollow">YAWS urlencode and urldecode routines</a> </p> <p>They are fairly straightforward, although comments indicate the encode is not 100% complete for all punctuation characters.</p> http://stackoverflow.com/questions/114196/url-encode-in-erlang/501244#501244 2 Answer by klaar for URL encode in Erlang klaar 2009-02-01T17:49:02Z 2009-02-01T17:49:02Z <p>I encountered the lack of this feature in the HTTP modules as well.</p> <p>It turns out that this functionality is actually available in the erlang distribution, you just gotta look hard enough.</p> <p>edoc_lib:escape_uri("look here i am") -> "look%20here%20i%20am"</p> <p><a href="http://www.erlang.org/doc/man/edoc_lib.html" rel="nofollow">edoc_lib</a></p> http://stackoverflow.com/questions/114196/url-encode-in-erlang/1260136#1260136 -1 Answer by Francesco for URL encode in Erlang Francesco 2009-08-11T12:48:28Z 2009-08-11T12:56:58Z <p>Hi, I’m trying to use this function. Actually it works in my local machine, either via erl shell either in a ejabberd module. But if I try to use this ejabberd module in production, when it gets to the point where it has to do edoc_lib:escape_uri the result is this :</p> <p>E(:ejabberd_hooks:190) : {undef, [{edoc_lib,escape_uri, ["something to be escaped"]}, {mod_test,save_message,1}, {mod_test,on_message_sent,3}, {ejabberd_hooks,run1,3}, {ejabberd_c2s,session_established2,2}, {gen_fsm,handle_msg,7}, {proc_lib,wake_up,3}]}</p> <p>Seems like the function is undefined. You know these erlang errors are not so explicit… Do I need to include something in order to have it work?</p> <p>What I don’t understand is why the same function edoc_lib:escape_uri works in production if called inside an erlang shell…</p> <p>EDIT : I answer myself, edoc_lib.beam was not in the path...</p>