I use cowboy ( https://github.com/extend/cowboy ) for one quiet web service, I need to get the parameters from "http: // localhost: 8080 / = 1 & = 2 & = 32"
init({tcp, http}, Req, Opts) -> log4erl:debug("~p~n", [Opts]), {ok, Req, undefined_state}. handle(Req, State) -> {ok, Req2} = cowboy_http_req:reply(200, [], <<"Hello World!">>, Req), io:format("How to get the params from Req ? "), {ok, Req2, State}. terminate(Req, State) -> log4erl:debug("~p~p~n", [Req, State]), ok.
source share