Hey<br>
<br>
Im having small problems formulating post arguements in http:request to match the format sent by browsers,<br>
allowed types are binary, and string, I outputted Arg after sending a post request from a form with 2 fields, number and string<br>
the post part of the argument was in binary, so io:formatting
binary_to_term came out [{"number","numberval"},{"string","stringval"}]<br>
this is also what yaws_api:parse_post() gave me<br>
<br>
which is pretty much what i expected, but if i send, <br>
<br>
PostArg = term_to_binary([{"number","numberval"},{"string","stringval"}])<br>
http:request(post,{Url,[],"text/plain",PostArg},[],[]),<br>
<br>
I need to use <br>
<br>
[{MessageTemp,_}] = yaws_api:parse_post(Arg),<br>
Message = binary_to_term(list_to_binary(MessageTemp)).<br>
<br>
to get the post arguments in [{Key,Val}] format (please dont ask how / why i came up with that)<br>
<br>
So is there any way to manually formulate post arguements to match the format they are sent by a browser, <br>
as I havent found anything to help me do so<br>
<br>
Thanks<br>
<br>
Dale<br>