Most of new programmer starts learning nodejs, assuming have knowledge in javascript already, by creating a web-server in simple easy few lines of codes. Well, do you know that the same http module, which helps us creating a web server, can also be used to perform http request to another remote server? Today, in this tutorial, which is intended for nodejs beginners, I will try … [Read more...] about How To Create HTTP Request In NodeJS
http
PHP HTTP Request With Guzzle
If you are consuming some kind of API with complex PHP HTTP requests which don't provide a clean wrapper library, I can feel the nightmare you might be having. The same could happen if you are writing such kind of API wrapper as well. Here, I will try to introduce you to Guzzle library and get a quick start. This article is targeted at complete beginners, so if you are already … [Read more...] about PHP HTTP Request With Guzzle
Generate HTTP Requests using c#
In several applications, it's required to create some requests(either get or post ) on a web resource and process the received data from the server script itself. In the popular scripting language PHP, using guzzle library helps to do such works perfectly. Those who are using c# and .net platforms for developing web applications, also need to have such facilities. Luckily, … [Read more...] about Generate HTTP Requests using c#