Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,596 members, 7,809,162 topics. Date: Friday, 26 April 2024 at 02:10 AM

Http Request/response Testing - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / Http Request/response Testing (1563 Views)

Ethical Hacking And Penetration Testing For Educational Purposes / Na Who Design/redesign Http://selfcare.spectranet.com.ng? / Loki v 1.8 http Bot | Best Botnet 2017| Programming Tutorial |all Browser (2) (3) (4)

(1) (Reply) (Go Down)

Http Request/response Testing by paranorman(m): 9:24am On Apr 01, 2017
Hello all.

Can anyone recommend a simple application that I can use to test http request/response messages?
Re: Http Request/response Testing by Nobody: 10:21am On Apr 01, 2017
postman

3 Likes

Re: Http Request/response Testing by paranorman(m): 5:16pm On Apr 01, 2017
proxy20:
......
Re: Http Request/response Testing by Nobody: 8:26pm On Apr 01, 2017
what language?
Re: Http Request/response Testing by stack1(m): 10:27am On Apr 02, 2017
Postman as the guy up there said, and its not a language its an app
Re: Http Request/response Testing by webdeveloperqx: 11:06pm On Apr 02, 2017
its a google chrome extension so be sure you have google chrome. Also if you use the terminal, you can use cURL to send HTTP Requests and have response sent in your terminal , for example :
you can send a request to google.com like this from the terminal:

curl https://www.google.com \
-H "X-header name".

etc.

1 Like

Re: Http Request/response Testing by samm(m): 11:33pm On Apr 02, 2017
Re: Http Request/response Testing by paranorman(m): 7:43am On Apr 03, 2017
i gotta explain better then:

I just wanna practice with the raw HTTP request/response messages. I got Telnet client on windows 10 (Telnet server has been deprecated on windows 10). I also got APACHE XAMPP, but telnet won't connect with localhost as connection is always lost!

I just wanna practice with the raw thing, do something with Telnet like:

>open 127.0.0.1 80
>GET /helloworld.php HTTP/1.1

So I can get the response HTTP message, that's all. I don't need something elaborate or with to many technical jargons, I never expert abeg.
Re: Http Request/response Testing by romme2u: 11:34pm On Apr 03, 2017
You can use your browser to do this. All browsers have a web console you can use to make GET http request to either local or remote server, configure http headers to be sent with the request and read the response right in the console.

On latest firefox, open options, click developer and select web console to open the console OR press Ctrl+Shift+K (shortcut).

NB: Almost all latest major browsers like chrome, opera, safari and even internet explorer plus Edge have consoles but firefox is the easiest to use as they have complex interface. Moreover, it will take you time to get used to the functionalities they offer as it varies among vendors.

There are a lot of tutorials on the web on how to use developer tools provided by the vendors. Happy searching and playing.

1 Like

Re: Http Request/response Testing by Nobody: 7:58am On Apr 04, 2017
In c/c++

Internetconnect(), InternetOpenRequest(), HttpOpenRequest(), HttpSendRequest()

Guess that replies you. I don't know of C# as you didn't specify what language
Re: Http Request/response Testing by paranorman(m): 7:22am On Apr 05, 2017
romme2u:
You can use your browser to do this. All browsers have a web console you can use to make GET http request to either local or remote server, configure http headers to be sent with the request and read the response right in the console.

On latest firefox, open options, click developer and select web console to open the console OR press Ctrl+Shift+K (shortcut).

NB: Almost all latest major browsers like chrome, opera, safari and even internet explorer plus Edge have consoles but firefox is the easiest to use as they have complex interface. Moreover, it will take you time to get used to the functionalities they offer as it varies among vendors.

There are a lot of tutorials on the web on how to use developer tools provided by the vendors. Happy searching and playing.
thanks, I am gonna try this out..
Re: Http Request/response Testing by paranorman(m): 7:28am On Apr 05, 2017
gimakon:
In c/c++

Internetconnect(), InternetOpenRequest(), HttpOpenRequest(), HttpSendRequest()

Guess that replies you. I don't know of C# as you didn't specify what language

PHP. Just dealing with the raw HTTP thing. no particular language
Re: Http Request/response Testing by Nobody: 6:01pm On Apr 05, 2017
paranorman:


PHP. Just dealing with the raw HTTP thing. no particular language

Use curl.
Re: Http Request/response Testing by AAinEqGuinea: 5:22pm On Apr 09, 2017
romme2u:
You can use your browser to do this. All browsers have a web console you can use to make GET http request to either local or remote server, configure http headers to be sent with the request and read the response right in the console.

On latest firefox, open options, click developer and select web console to open the console OR press Ctrl+Shift+K (shortcut).

NB: Almost all latest major browsers like chrome, opera, safari and even internet explorer plus Edge have consoles but firefox is the easiest to use as they have complex interface. Moreover, it will take you time to get used to the functionalities they offer as it varies among vendors.

There are a lot of tutorials on the web on how to use developer tools provided by the vendors. Happy searching and playing.
paranorman:

thanks, I am gonna try this out..

Download and try out the new Firefox Developer browser; multi-browser debugging (Valance) and more for web Development: https://www.mozilla.org/en-US/firefox/developer/

Yea, it is another browser to download (not on top of a current Firefox installation) and FFD also tracks, but I like it.

Re: Http Request/response Testing by romme2u: 6:11pm On Apr 09, 2017
AAinEqGuinea:



Download and try out the new Firefox Developer browser; multi-browser debugging (Valance) and more for web Development: https://www.mozilla.org/en-US/firefox/developer/

Yea, it is another browser to download (not on top of a current Firefox installation) and FFD also tracks, but I like it.

yea i already had it. i downloaded it around late 2014 or early 2015.

Mehn what this modern browsers are providing is scary. These guys are turning browser into IDE, complex Interpreters and a Platform (for developing and deploying apps).

Anytime i peep at developer tools and API's provided by vendors, goose-pimple just overshadow me. Google and Mozilla have made sure IE died a natural death but Microsoft aint giving up.

In today's world, WEB is a platform like Windows, Linux, Android and Mac with an ever expanding features that will take an average developer years to learn and use them.

1 Like

Re: Http Request/response Testing by AAinEqGuinea: 1:25pm On Apr 10, 2017
romme2u:


yea i already had it. i downloaded it around late 2014 or early 2015.

Mehn what this modern browsers are providing is scary. These guys are turning browser into IDE, complex Interpreters and a Platform (for developing and deploying apps).

Anytime i peep at developer tools and API's provided by vendors, goose-pimple just overshadow me. Google and Mozilla have made sure IE died a natural death but Microsoft aint giving up.

In today's world, WEB is a platform like Windows, Linux, Android and Mac with an ever expanding features that will take an average developer years to learn and use them.

cool cool

(1) (Reply)

Null Reference Exception Object Reference Not Set To An Instance Of An Object In / Developer Needed For A Web Application / How to Upgrade to MySQL 5.0

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 24
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.