Erlang HTTP problems - http
I can't make a request with Erlang/Cowboy at all. I can make one from the erlang shell but not when running a cowboy release. I've tried using the 'hackney' library as well:
hackney:start(),
{ok, _, _, Ref} = hackney:request(
get, <<"http://www.youtube.com">>, [], <<>>, [{pool, default}]
),
{ok, Body} = hackney:body(Ref),
io:format("body: ~p~n~n", [Body]),
Error:
Error in process <0.361.0> on node 'cta_erlang_backend#127.0.0.1' with exit value:
{[{reason,undef},
{mfa,{hello_handler,handle,2}},
{stacktrace,[{hackney,start,[],[]},
{hello_handler,handle,2,
[{file,"src/hello_handler.erl"},{line,18}]},
{cowboy_handler,handler_handle,4,
[{file,"src/cowboy_handler.erl"},{line,111}]},
{cowboy_protocol,execute,4,
[{file,"src/cowboy_protocol.erl"},
{line,442}]}]},
{req,[{socket,#Port<0.267>},
{transport,ranch_tcp},
{connection,keepalive},
{pid,<0.361.0>},
{method,<<"POST">>},
{version,'HTTP/1.1'},
{peer,{{10,0,0,1},40049}},
{host,<<"10.0.0.103">>},
{host_info,undefined},
{port,8080},
{path,<<"/">>},
{path_info,undefined},
{qs,<<>>},
{qs_vals,undefined},
{bindings,[]},
{headers,[{<<"host">>,<<"10.0.0.103:8080">>},
{<<"connection">>,<<"keep-alive">>},
{<<"content-length">>,<<"4">>},
{<<"cache-control">>,<<"no-cache">>},
{<<"origin">>,
<<"chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm">>},
{<<"user-agent">>,
<<"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/39.0.2171.65 Chrome/39.0.2171.65 Safari/537.36">>},
{<<"content-type">>,<<"text/plain;charset=UTF-8">>},
{<<"accept">>,<<"*/*">>},
{<<"accept-encoding">>,<<"gzip, deflate">>},
{<<"accept-language">>,<<"en-GB,en-US;q=0.8,en;q=0.6">>}]},
{p_headers,[{<<"connection">>,[<<"keep-alive">>]}]},
{cookies,undefined},
{meta,[]},
{body_state,waiting},
{buffer,<<"asdf">>},
{multipart,undefined},
{resp_compress,false},
{resp_state,waiting},
{resp_headers,[]},
{resp_body,<<>>},
{onresponse,undefined}]},
{state,{state}}],
[{cowboy_protocol,execute,4,[{file,"src/cowboy_protocol.erl"},{line,442}]}]}
=ERROR REPORT==== 19-Oct-2016::18:56:51 ===
Ranch listener my_http_listener had connection process started with cowboy_protocol:start_link/4 at <0.361.0> exit with reason:
{[{reason,undef},{mfa,{hello_handler,handle,2}},{stacktrace,[{hackney,start,[],[]},{hello_handler,handle,2,[{file,"src/hello_handler.erl"},{line,18}]},{cowboy_handler,handler_handle,4,[{file,"src/cowboy_handler.erl"},{line,111}]},{cowboy_protocol,execute,4,[{file,"src/cowboy_protocol.erl"},{line,442}]}]},{req,[{socket,#Port<0.267>},{transport,ranch_tcp},{connection,keepalive},{pid,<0.361.0>},{method,<<"POST">>},{version,'HTTP/1.1'},{peer,{{10,0,0,1},40049}},{host,<<"10.0.0.103">>},{host_info,undefined},{port,8080},{path,<<"/">>},{path_info,undefined},{qs,<<>>},{qs_vals,undefined},{bindings,[]},{headers,[{<<"host">>,<<"10.0.0.103:8080">>},{<<"connection">>,<<"keep-alive">>},{<<"content-length">>,<<"4">>},{<<"cache-control">>,<<"no-cache">>},{<<"origin">>,<<"chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm">>},{<<"user-agent">>,<<"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/39.0.2171.65 Chrome/39.0.2171.65 Safari/537.36">>},{<<"content-type">>,<<"text/plain;charset=UTF-8">>},{<<"accept">>,<<"*/*">>},{<<"accept-encoding">>,<<"gzip, deflate">>},{<<"accept-language">>,<<"en-GB,en-US;q=0.8,en;q=0.6">>}]},{p_headers,[{<<"connection">>,[<<"keep-alive">>]}]},{cookies,undefined},{meta,[]},{body_state,waiting},{buffer,<<"asdf">>},{multipart,undefined},{resp_compress,false},{resp_state,waiting},{resp_headers,[]},{resp_body,<<>>},{onresponse,undefined}]},{state,{state}}],[{cowboy_protocol,execute,4,[{file,"src/cowboy_protocol.erl"},{line,442}]}]}
hello_handler.erl:
-module(hello_handler).
-behaviour(cowboy_http_handler).
-export([init/3]).
-export([handle/2]).
-export([terminate/3]).
-record(state, {
}).
init(_, Req, _Opts) ->
hackney:start(),
{ok, Req, #state{}}.
handle(Req, State) ->
{Method, Req2} = cowboy_req:method(Req),
case Method of
<<"POST">> ->
{ok, _, _, Ref} = hackney:request(get, <<"http://www.youtube.com">>,
[], <<>>, [{pool, default}]),
{ok, Body} = hackney:body(Ref),
io:format("body: ~p~n~n", [Body]),
ResponseBody = <<"Hello Erl POST!">>;
<<"GET">> ->
ResponseBody = <<"Hello Erlang1!">>
end,
{ok, Req2} = cowboy_req:reply(200,
[{<<"content-type">>, <<"text/plain">>}],
ResponseBody,
Req),
{ok, Req2, State}.
terminate(_Reason, _Req, _State) ->
ok.
{[{reason,undef},
{mfa,{hello_handler,handle,2}},
{stacktrace,[{hackney,start,[],[]},
{hello_handler,handle,2,
[{file,"src/hello_handler.erl"},{line,18}]},
{cowboy_handler,handler_handle,4,
[{file,"src/cowboy_handler.erl"},{line,111}]},
{cowboy_protocol,execute,4,
[{file,"src/cowboy_protocol.erl"},
{line,442}]}]},
Crash at cowboy_handler.erl 111 line, https://github.com/ninenines/cowboy/blob/1.1.x/src/cowboy_handler.erl#L111
Reason: hello_handler:handle/2 is undef
So
Make sure your hello_handler.erl in src dir;
Compile it with rebar compile;
restart server or l(hello_handler) in erlang shell
Related
golang proper http2 request
I want to make an http/2 request in go and got to a few issues there. How to make proper http/2 requests in go? Error: Get "https://webhook.site/aae1e0ab-3e48-49c8-8cd0-526e12ee4077": http2: unexpected ALPN protocol ""; want "h2" (Why? Other sites are working) Code: t := &http2.Transport{} c := &http.Client{ Transport: t, } r, err := http.NewRequest("GET", "https://webhook.site/aae1e0ab-3e48-49c8-8cd0-526e12ee4077", nil) if err != nil { fmt.Println(err) } r.Header.Set("User-Agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.2 Safari/605.1.15") r.Header.Set("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8") resp, err := c.Do(r) if err != nil { fmt.Println(err) } defer resp.Body.Close() body, err := ioutil.ReadAll(resp.Body) if err != nil { fmt.Println(err) } fmt.Println(string(body)) ```
As was mentioned, that server doesn't support HTTP2: PS C:\> curl.exe -I --http2-prior-knowledge https://webhook.site curl: (16) Error in the HTTP2 framing layer Contrast with one that does: PS C:\> curl.exe -I --http2-prior-knowledge https://example.com HTTP/2 200 https://curl.se/docs/manpage.html#--http2-prior-knowledge
Erlang TCP server always closes on accept
I'm fairly new to Erlang, and I'm trying to set up a simple multi-client chat server to learn more about the language. However whenever I try and run it I get a socket closed error from the call of gen_tcp:accept on the listening socket. I've tried a number of different port numbers to no avail. What am I missing? The code is below: -define(TCP_OPTIONS, [binary, {packet, 2}, {active, false}, {reuseaddr, true}]). listen(Portno, DictPid) -> case gen_tcp:listen(Portno, ?TCP_OPTIONS) of {ok, ListenSocket} -> spawn_link(fun() -> accept_connections(ListenSocket, DictPid) end), io:format("Listening on ~p~n", [ListenSocket]); {error, Error} -> io:format("Listen Error: ~w~n", [Error]) end. accept_connections(ListenSocket, DictPid) -> case gen_tcp:accept(ListenSocket) of {ok, ClientSocket} -> io:format("Accepting:~w~n", [ClientSocket]), gen_tcp:send(ClientSocket, "Welcome! Enter your name~n"), ClientPid = spawn(fun() -> io:format("Client connected"), setup_user(ClientSocket, DictPid) end), gen_tcp:controlling_process(ClientSocket, ClientPid), accept_connections(ListenSocket, DictPid); {error, Error} -> io:format("Accept Error: ~w~n", [Error]) end. setup_user(ClientSocket, DictPid) -> {ok, Username} = gen_tcp:recv(ClientSocket, 0), DictPid ! {add_new_pair, ClientSocket, Username}, ClientDict = get_dict(DictPid), broadcast_message(dict:fetch_keys(ClientDict), "[" ++ Username ++ "has entered the chat]"), client_loop(ClientSocket, Username, DictPid). [rest of program]
The issue here is that the controller of the ListenSocket terminates, which causes the ListenSocket to be closed.
how to login to website using HTTP Client in Delphi xe
i am trying to implement the HTTP Client in my project, i cant login to my account,i get Forbidden!, with IdHTTP its working well, whats is missing or wrong in my code ? NetHTTPClient1 properties: Connectiontimeout = 30000 AllowCookies = True HandleRedirects = True UserAgent = Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.76 Mobile Safari/537.36 NetHTTPRequest1 Properties : Method String = POST URL = https://www.instagram.com/accounts/web_create_ajax/attempt/ Code: procedure TForm2.Button1Click(Sender: TObject); var Params : TStrings; lHTTP: TIdHTTP; IdSSL : TIdSSLIOHandlerSocketOpenSSL; N: Integer; Token,email,S: string; Reply: TStringList; Cookie: TIdCookie; begin lHTTP := TIdHTTP.Create(nil); try IdSSL := TIdSSLIOHandlerSocketOpenSSL.Create(lHTTP); IdSSL.SSLOptions.Method := sslvTLSv1; IdSSL.SSLOptions.Mode := sslmClient; lHTTP.IOHandler := IdSSL; lHTTP.ReadTimeout := 30000; lHTTP.HandleRedirects := True; lHTTP.Request.UserAgent := 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.76 Mobile Safari/537.36'; lHTTP.Get('https://www.instagram.com', TStream(nil)); Cookie := lHTTP.CookieManager.CookieCollection.Cookie['csrftoken', 'www.instagram.com']; if Cookie <> nil then Token := Cookie.Value; finally end; try Params := TStringList.Create; Params.Add('username=' +'myusername'); Params.Add('password=' + 'mypassword'); NetHTTPClient1.CustomHeaders['X-CSRFToken'] := Token; NetHTTPClient1.CustomHeaders['X-Instagram-AJAX'] := '1'; NetHTTPClient1.CustomHeaders['X-Requested-With'] := 'XMLHttpRequest'; NetHTTPClient1.CustomHeaders['Referer'] := 'https://www.instagram.com/'; Memo1.Lines.Add(NetHTTPRequest1.Post('https://www.instagram.com/accounts/login/ajax/', Params).StatusText); finally end; ///login with IdHTTP///Wroks// try lHTTP.Request.CustomHeaders.Values['X-CSRFToken'] := Token; lHTTP.Request.CustomHeaders.Values['X-Instagram-AJAX'] := '1'; lHTTP.Request.CustomHeaders.Values['X-Requested-With'] := 'XMLHttpRequest'; lHTTP.Request.Referer := 'https://www.instagram.com/'; lHTTP.Request.ContentType := 'application/x-www-form-urlencoded'; lHTTP.Request.UserAgent := 'Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.76 Mobile Safari/537.36'; Reply := lHTTP.Post('https://www.instagram.com/accounts/login/ajax/', Params); Memo1.Lines.Add(Reply); end;
TNetHTTPClient is buggy with handleRedirect and post. https://quality.embarcadero.com/browse/RSP-14671 after when you login, you receive the cookie (the key in some way) and you must use theses cookies in all futur connexion.
"TNetHTTPClient is buggy with handleRedirect and post. " This is already fix in version: 10.2 Tokyo Release 2
Erlang socket.io server with supervisor
I'm currently trying to create a simple chat server with socket.io-erlang. I just started learning Erlang so I have a few problems adapting their demo so it works with modules. Hope you can help me, here's what I have so far. It shouldn't have any features yet, this time I only want to make it work (I get a few crash reports after starting it, you can read them if you want). App -module(echat_app). -behaviour(application). -export([start/2, stop/1]). start(_StartType, _StartArgs) -> echat_sup:start_link(). stop(_State) -> ok. Supervisor -module(echat_sup). -behaviour(supervisor). -export([start_link/0]). -export([init/1]). -define(CHILD(I, Type), {I, {I, start_link, []}, permanent, 5000, Type, [I]}). start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []). init([]) -> application:start(sasl), application:start(gproc), application:start(misultin), application:start(socketio), {ok, Pid} = socketio_listener:start([{http_port, 7878}, {default_http_handler,echat_http_handler}]), EventManager = socketio_listener:event_manager(Pid), ok = gen_event:add_handler(EventManager, echat_socketio_handler,[]), receive _ -> io:format("sub received something"), {ok, { {one_for_one, 5, 10}, [] }} end. Socket.IO Event Handler -module(echat_socketio_handler). -behaviour(gen_event). -include_lib("socketio/include/socketio.hrl"). -export([init/1, handle_event/2, handle_call/2, handle_info/2, terminate/2, code_change/3]). init([]) -> {ok, undefined}. handle_event({client, Pid}, State) -> io:format("Connected: ~p~n",[Pid]), EventManager = socketio_client:event_manager(Pid), ok = gen_event:add_handler(EventManager, ?MODULE,[]), {ok, State}; handle_event({disconnect, Pid}, State) -> io:format("Disconnected: ~p~n",[Pid]), {ok, State}; handle_event({message, Client, Msg=#msg{content=Content}}, State) -> io:format("Got a message: ~p from ~p~n",[Msg, Client]), socketio_client:send(Client, #msg{ content = "hello!" }), socketio_client:send(Client, #msg{ content = [{<<"echo">>, Content}], json = true}), {ok, State}; handle_event(_E, State) -> {ok, State}. handle_call(_, State) -> {reply, ok, State}. handle_info(_, State) -> {ok, State}. terminate(_Reason, _State) -> ok. code_change(_OldVsn, State, _Extra) -> {ok, State}. HTTP Request Handler -module(echat_http_handler). -export([handle_request/3]). handle_request(_Method, _Path, Req) -> Req:respond(200).
just a few things, no a specific answer to your question. First, in general you start the dependencies before starting your app, rather than on the init of some supervisor. Regarding the errors: {error,{{noproc,{gen_server,call, [socketio_listener_sup_sup, {start_child,[[{http_port,7878}, {default_http_handler,echat_http_handler}]]}, infinity]}}, {echat_app,start,[normal,[]]}}} This is the first one, it means that the code tried to call a gen_server named 'socketio_listener_sup_sup' , but that process did not exist. Given the name of it, I guess that is something that should be started by the socket.io-erlang application itself, so maybe it is not starting correctly for some reason. You can check that easily by checking the results: ok = application:start(sasl), ok = application:start(gproc), ok = application:start(misultin), ok = application:start(socketio),
nginx keeps passing the same http_cookie to uwsgi
I have a small python app running via uwsgi with requests served by nginx. I'm printing the environment variables... and it looks like after a couple of ok requests, nginx is sending the same HTTP_COOKIE param for unrelated requests: For example: {'UWSGI_CHDIR': '/ebs/py', 'HTTP_COOKIE': 'ge_t_c=4fcee8450c3bee709800920c', 'UWSGI_SCRIPT': 'server', 'uwsgi.version': '1.1.2', 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/redirect/ebebaf3b-475a-4010-9a72-96eeff797f1e', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'x-wsgiorg.fdevent.readable': , 'CONTENT_LENGTH': '', 'uwsgi.ready_fd': None, 'HTTP_USER_AGENT': 'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)', 'HTTP_CONNECTION': 'close', 'HTTP_REFERER': 'http://www.facebook.com/', 'SERVER_NAME': 'pixel.domain.com', 'REMOTE_ADDR': '10.load.bal.ip', 'wsgi.url_scheme': 'http', 'SERVER_PORT': '80', 'wsgi.multiprocess': True, 'uwsgi.node': 'py.domain.com', 'DOCUMENT_ROOT': '/etc/nginx/html', 'UWSGI_PYHOME': '/ebs/py', 'uwsgi.core': 127, 'HTTP_X_FORWARDED_PROTO': 'http', 'x-wsgiorg.fdevent.writable': , 'wsgi.input': , 'HTTP_HOST': 'track.domain.com', 'wsgi.multithread': False, 'REQUEST_URI': '/redirect/ebebaf3b-475a-4010-9a72-96eeff797f1e', 'HTTP_ACCEPT': 'text/html, application/xhtml+xml, /', 'wsgi.version': (1, 0), 'x-wsgiorg.fdevent.timeout': None, 'HTTP_X_FORWARDED_FOR': '10.load.bal.ip', 'wsgi.errors': , 'REMOTE_PORT': '36462', 'HTTP_ACCEPT_LANGUAGE': 'en-US', 'wsgi.run_once': False, 'HTTP_X_FORWARDED_PORT': '80', 'CONTENT_TYPE': '', 'wsgi.file_wrapper': , 'HTTP_ACCEPT_ENCODING': 'gzip, deflate'} and {'UWSGI_CHDIR': '/ebs/py', 'HTTP_COOKIE': 'ge_t_c=4fcee8450c3bee709800920c', 'UWSGI_SCRIPT': 'server', 'uwsgi.version': '1.1.2', 'REQUEST_METHOD': 'GET', 'PATH_INFO': '/redirect/2391e658-95ef-4300-80f5-83dbb1a0e526', 'SERVER_PROTOCOL': 'HTTP/1.1', 'QUERY_STRING': '', 'x-wsgiorg.fdevent.readable': , 'CONTENT_LENGTH': '', 'uwsgi.ready_fd': None, 'HTTP_USER_AGENT': 'Mozilla/5.0 (iPad; CPU OS 5_1_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9B206 Safari/7534.48.3', 'HTTP_CONNECTION': 'close', 'HTTP_REFERER': 'http://www.facebook.com/', 'SERVER_NAME': 'pixel.domain.com', 'REMOTE_ADDR': '10.load.balancer.ip', 'wsgi.url_scheme': 'http', 'SERVER_PORT': '80', 'wsgi.multiprocess': True, 'uwsgi.node': 'py.domain.com', 'DOCUMENT_ROOT': '/etc/nginx/html', 'UWSGI_PYHOME': '/ebs/py', 'uwsgi.core': 127, 'HTTP_X_FORWARDED_PROTO': 'http', 'x-wsgiorg.fdevent.writable': , 'wsgi.input': , 'HTTP_HOST': 'fire.domain.com', 'wsgi.multithread': False, 'REQUEST_URI': '/redirect/2391e658-95ef-4300-80f5-83dbb1a0e526', 'HTTP_ACCEPT': 'text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8', 'wsgi.version': (1, 0), 'x-wsgiorg.fdevent.timeout': None, 'HTTP_X_FORWARDED_FOR': '10.load.bal.ip', 'wsgi.errors': , 'REMOTE_PORT': '39498', 'HTTP_ACCEPT_LANGUAGE': 'en-us', 'wsgi.run_once': False, 'HTTP_X_FORWARDED_PORT': '80', 'CONTENT_TYPE': '', 'wsgi.file_wrapper': , 'HTTP_ACCEPT_ENCODING': 'gzip, deflate'} These are 2 distinct clients. I opened an incognito session, confirmed that no cookie was sent in the headers, and the uwsgi log shows that it received the same HTTP_COOKIE. How can I make sure that nginx only passes the proper information for the current request, without regard to other requests?
Figured it out... I had to add this line to uwsgi_params in /etc/nginx/ uwsgi_param HTTP_COOKIE $http_cookie; Without it, the HTTP_COOKIE variable could not be trusted in uwsgi/python app.