Tagged articles

QUERY method

6 articles · Page 1 of 1
21CTO
21CTO
Jun 30, 2026 · Backend Development

Why HTTP Finally Gets the Long‑Awaited QUERY Method

The IETF’s new RFC 10008 defines a QUERY HTTP method that combines GET’s safety and idempotence with POST’s ability to carry large request bodies, offering a standardized way for API designers to send complex, read‑only queries without the limitations of URL‑encoded parameters.

GET vs POSTGraphQLHTTP
0 likes · 7 min read
Why HTTP Finally Gets the Long‑Awaited QUERY Method
php Courses
php Courses
Mar 12, 2025 · Backend Development

Using Laravel’s New query() Method to Generate URLs with Query Parameters

Laravel’s newly introduced query() method simplifies generating URLs with query parameters by allowing chainable calls on URL instances, reducing code verbosity compared to traditional URL::to or route() approaches, and supporting parameter overrides and integration with route(), making URL construction more flexible and readable.

LaravelPHPQUERY method
0 likes · 5 min read
Using Laravel’s New query() Method to Generate URLs with Query Parameters
macrozheng
macrozheng
Jun 20, 2024 · Backend Development

What Is the HTTP QUERY Method and How Does It Differ from GET/POST?

This article explains the HTTP QUERY method as a safe, idempotent request type that carries payloads like POST but enables caching and automatic retries, detailing its semantics, caching behavior, Accept-Query header, and providing practical code examples.

HTTPQUERY methodWeb API
0 likes · 10 min read
What Is the HTTP QUERY Method and How Does It Differ from GET/POST?