ALL articles of HTTP

Create and send get request in Node.js

Node.js built-in HTTP module is used to transfer data over http protocol. It can send HTTP request to external server and get response data....

READ MORE

Create server using http module in Node.js

Node.js has built-in HTTP module to transfer data over http protocol. HTTP module also used to create http server and send response to the s...

READ MORE

Angular HTTP get request example using HttpClient module

Every front-end application needs to communicate with third party server to get and send data to server. Angular uses HTTP protocol to send...

READ MORE

How to make a PHP curl request with basic authentication

When accessing API request over PHP curl, some routes are authentication required. Also third party API mostly required to authenticate befo...

READ MORE

How to make HTTP requests in Node.js

There are so many packages available to make http request in Node.js. Some popular packages are Axios, node-fetch, SuperAgent, Got etc. I...

READ MORE

How to create Get and Post request using Python requests mod...

Requests is open-source library to send http requests in Python. Though there is Python's built-in library, urllib2 but it lacks many ca...

READ MORE