Most new programmers start learning NodeJS, assuming they already have knowledge of JavaScript, by creating a web server with a simple, easy few lines of code. Well, do you know that the same HTTP module, which helps us create a web server, can also be used to perform HTTP requests to another remote server? Today, in this tutorial, which is intended for NodeJS beginners, I will … [Read more...] about How To Create HTTP Request In NodeJS
http
PHP HTTP Request With Guzzle
If you are consuming some 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 an API wrapper. 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 somewhat experienced, you … [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. In the popular scripting language PHP, using the guzzle library helps to do such works perfectly. Those who are using c# and .net platforms to develop web applications also need to have such facilities. Luckily, there are … [Read more...] about Generate HTTP Requests using C#