Skip to main content

Share: API

An API (Application Programming Interface) is a set of rules and protocols that allow one software application to interact with another. It defines the methods and data formats that applications use to request and exchange information. APIs are used to allow different systems, services, or components to communicate with each other.

APIs typically work by defining endpoints (URLs) where one system can send requests, and the system receiving the request processes it and sends a response back. Here's a basic overview of how the process works:

1. Client (Requester): The system (or program) that initiates the request. This could be a user interacting with an app, or a program that needs to fetch data from another service.

2. API Endpoint: An endpoint is a specific URL or URI (Uniform Resource Identifier) on the server that defines where the request should be sent.

3. Request: The client sends an HTTP request to the API endpoint. This can be one of several types:
GET: Retrieve data.
POST: Send data (e.g., create a resource).
PUT/PATCH: Update data.
DELETE: Delete data.

4. Server: The server hosts the API, processes incoming requests, performs the requested action, and sends back a response.

5. Response: After processing the request, the server sends a response back to the client. This could be in various formats, commonly JSON (JavaScript Object Notation) or XML. The response typically includes a status code indicating success (e.g., 200 for OK) or failure (e.g., 404 for not found).

Popular posts from this blog

Share: A little bit about e-Invoicing (07/07/2025)

With Malaysia's push toward digital tax compliance, e-Invoicing will soon become mandatory for all businesses, big or small. Spearheaded by the Lembaga Hasil Dalam Negeri (LHDN), this new system aims to improve transparency, reduce fraud, and automate tax reporting. Whether you’re a corporation or a small business owner, understanding how e-Invoicing works is crucial. 🔍 What is E-Invoicing? E-Invoicing is the process of issuing and receiving invoices electronically, using a structured digital format (like JSON or XML) that allows for automatic validation and processing by the tax authority. Unlike PDF or paper invoices, e-Invoices are machine-readable, submitted in real time, and stored digitally with built-in authentication, including QR codes and digital signatures. Once submitted through LHDN’s MyInvois system, the invoice is validated and becomes an official legal document, complete with a timestamp and unique identifier. This system removes the need for paper documentation an...

How-To: Code

Coding is the process of creating instructions for a computer to perform a specific task. The language you choose to use depends on what you want to achieve, as different programming languages are suited to different types of tasks. Here is a general guide to getting started with coding: 1. Choose a Programming Language: * Popular languages for beginners include Python, JavaScript, and Ruby. * Python is often recommended for its readability and versatility. * JavaScript is essential for web development. * Choose a language based on your goals and the type of applications you want to build. 2. Set Up Your Development Environment: * Install a code editor like Visual Studio Code, Atom, or Sublime Text. * Install the necessary tools and libraries for your chosen language. 3. Learn the Basics: * Familiarize yourself with basic programming concepts such as variables, data types, control structures (if statements, loops), and functions. * Understand how to use the syntax of your chosen langua...

Share: PHP

PHP is a widely-used, open-source scripting language especially suited for web development. Here's a breakdown of key aspects: 1. Core Concepts: Server-Side Scripting: PHP code is executed on the server, generating HTML (or other output) that is then sent to the user's browser. This distinguishes it from client-side languages like JavaScript, which run in the browser. Embedding in HTML: PHP code can be directly embedded within HTML, making it easy to create dynamic web pages. Dynamic Content: PHP allows you to generate content that changes based on user input, database information, or other factors. Database Interaction: PHP readily connects to various databases (like MySQL, PostgreSQL), enabling you to store and retrieve data. 2. Key Features and Characteristics: Open Source: PHP is free to use and distribute. Cross-Platform: It runs on various operating systems (Windows, Linux, macOS). Large Community: A vast community provides support, resources, and libraries. Web Framework...