Tagged articles
36 articles
Page 1 of 1
java1234
java1234
Mar 26, 2026 · Backend Development

Why Some Companies Force All APIs to Use POST – Pros, Cons, and Best Practices

The article examines why a company might require every HTTP API to use POST, compares GET and POST characteristics, discusses RESTful principles, outlines the trade‑offs of a POST‑only policy, and offers practical guidance for choosing the right method based on business needs.

BackendHTTPPOST
0 likes · 10 min read
Why Some Companies Force All APIs to Use POST – Pros, Cons, and Best Practices
Linux Tech Enthusiast
Linux Tech Enthusiast
Feb 28, 2026 · Fundamentals

GET vs POST: What’s the Real Difference in HTTP?

This article explains the fundamental differences between HTTP GET and POST methods, covering their request line structure, header and body handling, safety and idempotence properties, caching behavior, length limits, TCP packet usage, and how HTTP distinguishes them for resource management.

HTTPPOSTget
0 likes · 10 min read
GET vs POST: What’s the Real Difference in HTTP?
Linux Tech Enthusiast
Linux Tech Enthusiast
Jan 3, 2026 · Fundamentals

Understanding the Key Differences Between HTTP GET and POST Requests

GET and POST are two of the eight HTTP request methods; this article explains their request‑line, header and body structures, compares their characteristics such as safety, idempotence, caching, length limits and TCP packet usage, and clarifies why HTTP distinguishes them despite sharing the same underlying protocol.

HTTPPOSTget
0 likes · 11 min read
Understanding the Key Differences Between HTTP GET and POST Requests
php Courses
php Courses
Nov 26, 2025 · Backend Development

Master Remote HTTP Requests in PHP with file_get_contents and cURL

This guide explains how to use PHP's file_get_contents and cURL functions to send GET and POST HTTP requests, covering setup, option configuration, example code, and best‑practice tips for reliable remote data retrieval and transmission.

POSTcURLfile_get_contents
0 likes · 4 min read
Master Remote HTTP Requests in PHP with file_get_contents and cURL
Liangxu Linux
Liangxu Linux
Aug 17, 2023 · Backend Development

GET vs POST: The Real Truth Behind Their Differences

This article explains the basic concepts of GET and POST, debunks common interview answers, reveals that both methods are fundamentally TCP connections, discusses browser and server limits, and highlights the practical impact of their packet‑level differences.

BackendHTTPPOST
0 likes · 8 min read
GET vs POST: The Real Truth Behind Their Differences
JavaScript
JavaScript
May 12, 2022 · Frontend Development

Mastering Fetch: How to GET and POST JSON with JavaScript

This guide explains how to use the JavaScript Fetch API for sending and receiving JSON data, covering basic fetch calls, configuring GET requests with headers, handling responses, and performing POST (or PUT/PATCH) operations with proper content-type settings, plus a note on polyfills.

APIJSONPOST
0 likes · 4 min read
Mastering Fetch: How to GET and POST JSON with JavaScript
IT Services Circle
IT Services Circle
Apr 28, 2022 · Backend Development

Understanding the Differences Between HTTP GET and POST Methods

This article explains the technical distinctions between HTTP GET and POST requests, covering how parameters are transmitted, practical limitations imposed by browsers and servers, differences in caching, security, and packet flow, and why both methods ultimately rely on the same TCP/IP transport.

BackendHTTPNetworking
0 likes · 7 min read
Understanding the Differences Between HTTP GET and POST Methods
Architecture Digest
Architecture Digest
Nov 29, 2021 · Backend Development

Why Some Companies Require All APIs to Use POST Requests

The article examines why certain companies mandate POST for every API endpoint, comparing GET and POST differences such as security, payload size, data types, speed, intended usage, and caching, and concludes that POST suits large data submissions while GET is better for simple queries and static resources.

APIBackendPOST
0 likes · 4 min read
Why Some Companies Require All APIs to Use POST Requests
Su San Talks Tech
Su San Talks Tech
Jun 2, 2021 · Backend Development

Mastering HTTP: When to Use GET vs POST and Their Real Differences

This article presents an interview‑style walkthrough of HTTP request methods, detailing the eight methods defined by HTTP/1.1, focusing on GET and POST, their functional differences, URL length limits, parameter formatting, security considerations, and packet behavior.

BackendHTTPPOST
0 likes · 11 min read
Mastering HTTP: When to Use GET vs POST and Their Real Differences
Selected Java Interview Questions
Selected Java Interview Questions
Nov 18, 2020 · Fundamentals

Understanding the Differences Between HTTP GET and POST Methods

This article explains the fundamental distinctions between HTTP GET and POST requests, covering how parameters are transmitted, browser and server behaviors, length limits, security implications, underlying TCP mechanics, and performance trade‑offs, while also debunking common misconceptions often seen in interview answers.

NetworkingPOSTWeb Development
0 likes · 7 min read
Understanding the Differences Between HTTP GET and POST Methods
Programmer DD
Programmer DD
Oct 20, 2020 · Backend Development

GET vs POST: Uncover the Real Differences Behind HTTP Requests

This article explains the fundamental distinctions between GET and POST HTTP methods, covering how parameters are transmitted, browser and server constraints, underlying TCP behavior, and why POST often requires two TCP packets while GET typically uses only one.

BackendNetworkingPOST
0 likes · 7 min read
GET vs POST: Uncover the Real Differences Behind HTTP Requests
IT Architects Alliance
IT Architects Alliance
Sep 23, 2020 · Backend Development

Understanding the Differences Between HTTP GET and POST Methods

This article explains the fundamental similarities and practical differences between HTTP GET and POST requests, covering how parameters are transmitted, caching behavior, URL length limits, security considerations, underlying TCP mechanics, and the impact on performance and semantics.

HTTPNetworkingPOST
0 likes · 7 min read
Understanding the Differences Between HTTP GET and POST Methods
MaGe Linux Operations
MaGe Linux Operations
Sep 23, 2020 · Backend Development

GET vs POST: Uncover the Real Differences Behind HTTP Requests

This article explains the fundamental distinctions between GET and POST HTTP methods, covering how parameters are transmitted, caching behavior, URL length limits, security implications, and the underlying TCP packet flow, while debunking common myths and highlighting practical considerations for developers.

HTTPPOSTTCP
0 likes · 7 min read
GET vs POST: Uncover the Real Differences Behind HTTP Requests
Efficient Ops
Efficient Ops
May 12, 2019 · Backend Development

GET vs POST: Uncover the Real Differences Behind HTTP Requests

While many developers can list superficial distinctions between GET and POST, this article delves into the underlying TCP mechanics, browser and server constraints, and practical implications, revealing why the perceived differences exist and how each method truly operates in real‑world web applications.

BackendHTTPPOST
0 likes · 7 min read
GET vs POST: Uncover the Real Differences Behind HTTP Requests
JD Tech
JD Tech
May 23, 2018 · Fundamentals

Understanding the Differences Between HTTP GET and POST Methods

While both GET and POST are HTTP request methods built on TCP, they differ in how parameters are transmitted, caching behavior, URL length limits, security implications, and the number of TCP packets exchanged, with GET sending data via the URL and POST via the request body.

NetworkingPOSTWeb Development
0 likes · 7 min read
Understanding the Differences Between HTTP GET and POST Methods
21CTO
21CTO
Mar 24, 2016 · Backend Development

Mastering PHP cURL: How to Perform GET and POST Requests

This guide introduces PHP's cURL extension, outlines its basic workflow, and provides clear GET and POST code examples, showing how to configure options, execute requests, handle responses, and decode JSON data into arrays or objects.

HTTPJSONPHP
0 likes · 3 min read
Mastering PHP cURL: How to Perform GET and POST Requests
21CTO
21CTO
Feb 25, 2016 · Fundamentals

GET vs POST: When to Use Each HTTP Method and Why It Matters

This article explains the HTTP protocol, outlines the purposes of GET and POST methods, details their characteristics, compares them across factors like caching, security, and data limits, and introduces additional HTTP methods such as HEAD, PUT, DELETE, OPTIONS, and CONNECT.

HTTPPOSTWeb Protocols
0 likes · 5 min read
GET vs POST: When to Use Each HTTP Method and Why It Matters