Tag

POST

0 views collected around this technical thread.

macrozheng
macrozheng
Jun 11, 2025 · Backend Development

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

The article examines why some companies mandate POST for every API, compares GET and POST characteristics, discusses RESTful principles, weighs the benefits and drawbacks, and offers practical guidance while showcasing an open‑source microservice project for deeper learning.

API designBackendGET
0 likes · 11 min read
Why Do Some Companies Force All APIs to Use POST? Pros, Cons, and Best Practices
Test Development Learning Exchange
Test Development Learning Exchange
Feb 5, 2025 · Backend Development

Configuring GET Query Parameters and POST Request Bodies in Locust

This guide explains how to use Locust to add query parameters to GET requests and send JSON or form‑encoded data in POST requests, including combined examples with custom headers for comprehensive HTTP request configuration.

GETHTTPLocust
0 likes · 4 min read
Configuring GET Query Parameters and POST Request Bodies in Locust
Code Ape Tech Column
Code Ape Tech Column
Dec 3, 2023 · Backend Development

Why Some Companies Require All APIs to Use POST: Benefits, Drawbacks, and Design Insights

The article examines the reasons behind mandating POST for every API endpoint, compares GET and POST characteristics, discusses RESTful principles, highlights practical pros and cons, and offers guidance on choosing the most suitable HTTP method based on business and technical considerations.

API designBackendGET
0 likes · 9 min read
Why Some Companies Require All APIs to Use POST: Benefits, Drawbacks, and Design Insights
Laravel Tech Community
Laravel Tech Community
Aug 22, 2022 · Backend Development

Using PHP cURL for GET, POST, File Upload, and General HTTP Requests

This guide shows how to enable the PHP cURL extension and provides complete code examples for performing HTTP GET, POST, file upload, and flexible request operations using cURL functions in PHP.

BackendFile UploadGET
0 likes · 6 min read
Using PHP cURL for GET, POST, File Upload, and General HTTP Requests
Selected Java Interview Questions
Selected Java Interview Questions
May 22, 2022 · Backend Development

Why Some Companies Require All APIs to Use POST Requests

The article explains the technical reasons behind mandating POST for all API endpoints, comparing GET and POST in terms of security, payload size, data types, caching, and typical use cases, and argues that a balanced approach is usually more appropriate.

API designBackendGET
0 likes · 3 min read
Why Some Companies Require All APIs to Use POST Requests
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.

BackendGETHTTP
0 likes · 7 min read
Understanding the Differences Between HTTP GET and POST Methods
Laravel Tech Community
Laravel Tech Community
Dec 12, 2021 · Backend Development

Why Most Companies Prefer POST Requests Over GET: Differences and Best Practices

Most companies favor POST requests because they are more secure, can handle larger and more complex payloads, avoid URL length limits, and are suited for modifying data, while GET is better for retrieving static resources or simple queries, reflecting industry best practices for API design.

API designBackendGET
0 likes · 3 min read
Why Most Companies Prefer POST Requests Over GET: Differences and Best Practices
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.

APIBackendGET
0 likes · 4 min read
Why Some Companies Require All APIs to Use POST Requests
Python Programming Learning Circle
Python Programming Learning Circle
Aug 2, 2021 · Backend Development

Using Python requests module for GET and POST API calls

This tutorial explains how to install the Python requests library and use it to perform GET and POST HTTP requests, detailing required parameters, headers, and providing complete code examples for calling remote APIs and handling responses.

APIGETHTTP
0 likes · 4 min read
Using Python requests module for GET and POST API calls
php中文网 Courses
php中文网 Courses
Feb 3, 2021 · Backend Development

Handling Form Submissions in ThinkPHP: POST vs GET and Using the I Method

This article explains how to handle form submissions in ThinkPHP by distinguishing POST and GET requests, using built‑in constants to detect request types, and employing the I method for secure data retrieval, illustrated with a complete add() controller example.

Form HandlingPHPPOST
0 likes · 4 min read
Handling Form Submissions in ThinkPHP: POST vs GET and Using the I Method
Laravel Tech Community
Laravel Tech Community
Dec 8, 2020 · Backend Development

Understanding the Differences Between HTTP GET and POST Methods

This article explains the fundamental distinctions between HTTP GET and POST requests, covering parameter placement, caching, URL length limits, security implications, TCP packet behavior, and practical considerations for developers when choosing the appropriate method.

GETHTTPPOST
0 likes · 8 min read
Understanding the Differences Between HTTP GET and POST Methods
Laravel Tech Community
Laravel Tech Community
Nov 29, 2020 · Backend Development

PHP cURL Wrapper Functions for GET, POST, and JSON Requests

This article provides PHP functions that demonstrate how to perform HTTP GET, POST, and JSON‑encoded POST requests using cURL, including error handling, timeout settings, SSL options, retry logic, and a usage example for calling an API.

GETHTTPJSON
0 likes · 5 min read
PHP cURL Wrapper Functions for GET, POST, and JSON Requests
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.

GETHTTPPOST
0 likes · 7 min read
Understanding the Differences Between HTTP GET and POST Methods
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.

BackendGETHTTP
0 likes · 7 min read
Understanding the Differences Between HTTP GET and POST Methods
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.

BackendGETHTTP
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.

BackendGETHTTP
0 likes · 7 min read
Understanding the Differences Between HTTP GET and POST Methods