Hello,
On 26.04.17 22:12, Giacomo Vacca wrote:
[...] @@ -331,7 +331,8 @@ t_newtran(); http_async_query("http://example.com/test.php?r_uri=$rU&f_uri=$fU", "HTTP_REPLY"); ... # POST -http_async_query("http://example.com/test.php", "{'r_uri':'$rU', 'f_uri':'$fU'}", "HTTP_REPLY"); +$var(payload) = "{'r_uri':'$rU', 'f_uri':'$fU'}"; +http_async_query("http://example.com/test.php", "HTTP_REPLY"); ... route[HTTP_REPLY] { if ($http_ok) {
is $var(payload) right in the example? Or should it be $http_req(body)?
Cheers, Daniel