Sankar Srinivasan·3 hours agoSriFetch.js : A JS Library for HTTP RequestsSriFetch.js : A JS Library for HTTP Requests Streamline Your API Interactions with SriFetch.js: A Powerful JavaScript Library for HTTP Requests. Simplify your API interactions and handle HTTP requests efficiently using SriFetch.js. Explore its features, including request interceptors, response interceptors, and timeout handling. …Http Request3 min readHttp Request3 min read
Pravinkumar Singh·1 day agoGuide to HTTP Status Codes for Backend EngineersHTTP status codes are an integral part of web development and are used to indicate the outcome of an HTTP request. As a backend engineer, understanding HTTP status codes is essential for building robust and user-friendly web applications. …Http Request6 min readHttp Request6 min read
Katrin HofstetterinREWRITE TECH by diconium·2 days agoKey Developer Concepts: APIs, HTTP and REST — an introductionI’m a junior frontend engineer who is also curious about backend development, and that’s why I dedicate this article to a topic which both frontend and backend developers should be familiar with: RESTful APIs and HTTP requests. What’s an API (“Application Programming Interface”)? Imagine that you want to order some food for your colleagues at work…Http Request9 min readHttp Request9 min read
Caroline Gomes·3 days agoPOSTWhenever applications need to transfer files or move URL parameters, they use the POST method. Unlike GET, which inserts user parameters in the URL, the POST method inserts parameters in the body of the HTTP request. This has three major advantages: → No login required: Since POST requests can transfer…Http Request6 min readHttp Request6 min read
Vlad Kyrylenko·3 days agoGetting Started with REST API: A Beginner’s GuideIntroduction REST API (Representational State Transfer Application Programming Interface) has become a fundamental tool for modern web development, enabling seamless communication and data exchange between applications. …Http Request3 min readHttp Request3 min read
Caroline Gomes·3 days agoHTTP Requests and ResponsesHTTP communications consist of an HTTP request and an HTTP response. An HTTP request is made by the client (cURL/browser) and processed by the server (web servers such as Nginx, Apache, or Microsoft). Requests contain all the details we ask from the server, including the resource (URL, path, parameters), requested…Http Request4 min readHttp Request4 min read
1BarConnection·3 days agoDevs #1 Famous REST API ExplainedWelcome! It was hard for me to find all the information I will talk about in this article on one single place on the web. Because of this it was hard to figure out what all those things mean when I was starting understanding all this. …Http Request7 min readHttp Request7 min read
Kamlesh Singh·4 days agoDifference between PUT, POST, and PATCHPUT, POST, and PATCH are HTTP methods used to interact with web services. Each method has a distinct purpose and is used in specific scenarios: 1. PUT (Create or Replace): Purpose: The PUT method is used to create a new resource or replace an existing resource with a new representation. …Http Request2 min readHttp Request2 min read
Imran Niaz·5 days agoMember-onlyCyberPython Script for Sending HTTP Requests and Handling Responses”Hello one hope you are having a wonderful day today. I am going to share you a script that I wrote by myself.. The script was using request library in Python which helped me to send multiple type of request on a website server before you proceed this thing, you…Http Request2 min readHttp Request2 min read
Anand RathoreinAWS Tip·5 days agoRequests in PythonIn this blog, we will learn everything about requests in Python. We will take a look at how to make a get request, how to make a post request, how to download files, authentication, and exception handling in the requests package in Python. 1. Introduction In modern web development, interacting with APIs…Http Request9 min readHttp Request9 min read