Germain Oleablog.germain.tech·Jan 9, 2025Building Websites and Web Apps with WordPress, Symfony, and FastAPI: A Grad’s Journey into Security and FreelancingIntroduction: A Grad's Guide to Freelancing and Security I’m a freshly minted security engineer with a dream: to level up as a DevSecOps professional. While I’m working on landing that perfect full-time role, I’ve been flexing my skills by building w...26 readsPortefolio & ProjectsDevSecOps
Muskan Yadavmuskanyadav.hashnode.dev·Jan 6, 2025Breaking Down REST APIs: A Beginner's GuideAPIs (Application Programming Interfaces) are the backbone of modern software development, enabling different applications to communicate seamlessly. Among various types of APIs, REST APIs (Representational State Transfer) are widely popular due to t...REST API
Pranav Bawgikarpranavbawg.hashnode.dev·Dec 15, 2024Why you should care about REST[22] What is a REST API? REST stands for Representational State Transfer. It is a lighter weight alternative to SOAP and WSDL XML-based API protocols. Developing a REST API enables us to create a foundation upon which we can build all other applicati...REST API
Treblletrebllemakers.hashnode.dev·Dec 13, 2024Introduction to REST API TestingIf you've built a REST API and deployed it to production, you might think the job is done, but... does it have any testing? How do you know it's working properly right now? How do you know it'll keep working next time you push a change? What is API t...APIs
Milan Jovanovićmilanjovanovic.hashnode.dev·Nov 23, 2024Building Async APIs in ASP.NET Core - The Right WayMost APIs follow a simple pattern. The client sends a request. The server does some work. The server sends back a response. This works well for fast operations like fetching data or simple updates. But what about operations that take longer? Think ab...135 readsAPIs
gayatri kumargeekee.hashnode.dev·Nov 22, 2024Structuring APIs the RESTful Way: Building a Solid FrameworkIn the previous part, we built a basic API using Node.js and Express. Now, it’s time to take things further by structuring our API according to REST principles. REST (Representational State Transfer) is a design approach that makes APIs more reliable...10 likesWeb Developmentjs
Ayusharpcoderreacttonext.hashnode.dev·Nov 22, 2024Understanding REST vs. GraphQL: Which One Should You Choose?The debate between REST and GraphQL has been a significant topic in web development for years. Both offer ways to build APIs, but they cater to different needs. In this post, we’ll compare REST and GraphQL in terms of their features, benefits, and us...1 likewebdev
gayatri kumargeekee.hashnode.dev·Nov 21, 2024APIs Uncovered: The Gateway to Data and FunctionalityAPIs – The Bridge Between Systems Imagine you’re managing a space station and need data from various sources—weather on Mars, space mission statuses, and more. APIs (Application Programming Interfaces) act as digital translators that allow your syste...10 likesWeb Developmentjs
TARPARA KAUSHALkdtarpara.hashnode.dev·Nov 21, 2024Types of API1. SOAP (Simple Object Access Protocol) What it is: SOAP is a protocol for exchanging structured information in the form of XML. It was designed for high-level security and reliability. How it works: SOAP uses XML to send messages and relies on spe...APIs
Treblletrebllemakers.hashnode.dev·Nov 18, 2024Creating and Managing Documentation for .NET REST APIsOverview Good documentation is the backbone of any robust API. It ensures that developers can effectively use and maintain APIs, reducing onboarding time and minimizing support requests. For .NET REST APIs, well-crafted documentation is crucial in en...94 readsAPIs