Tagged articles
23 articles
Page 1 of 1
Architect's Guide
Architect's Guide
May 15, 2026 · Backend Development

One‑Line HTTP Requests with OKHttpUtil: A Minimal Java Wrapper

The article introduces OKHttpUtil, a lightweight wrapper around Square’s OkHttp library that enables Java developers to perform HTTP GET, POST, file upload, and download operations with a single line of code, includes Maven setup, Spring Boot integration, fluent API usage, and examples of wrapping external services such as eBay.

API wrapperHTTP clientHTTP request
0 likes · 10 min read
One‑Line HTTP Requests with OKHttpUtil: A Minimal Java Wrapper
php Courses
php Courses
Jan 27, 2026 · Backend Development

Mastering curl_setopt(): Configure PHP cURL Requests Like a Pro

This guide explains the purpose, syntax, parameters, return value, and practical example of PHP's curl_setopt() function, showing how to set options such as URL, request method, timeout, and response handling for reliable HTTP communication.

BackendHTTP requestPHP
0 likes · 4 min read
Mastering curl_setopt(): Configure PHP cURL Requests Like a Pro
php Courses
php Courses
Jan 13, 2026 · Backend Development

Mastering PHP curl_setopt: Syntax, Parameters, and Real-World Example

This guide explains the PHP curl_setopt function, covering its syntax, parameter meanings, return value, and provides a complete example that demonstrates sending a GET request, handling responses, error checking, and closing the cURL session.

BackendHTTP requestcURL
0 likes · 4 min read
Mastering PHP curl_setopt: Syntax, Parameters, and Real-World Example
php Courses
php Courses
Sep 3, 2025 · Backend Development

Mastering curl_setopt in PHP: Configure HTTP Requests Efficiently

This guide explains the purpose, syntax, parameters, return value, and a complete example of PHP's curl_setopt() function, showing how to set URLs, request methods, timeouts, and handle responses when making HTTP requests with cURL.

BackendHTTP requestPHP
0 likes · 4 min read
Mastering curl_setopt in PHP: Configure HTTP Requests Efficiently
php Courses
php Courses
Jul 24, 2025 · Backend Development

Mastering PHP curl_setopt: Set HTTP Options Like a Pro

This guide explains the PHP curl_setopt function, covering its syntax, parameters, return value, and a complete example that demonstrates how to configure and execute a GET request with cURL, handle errors, and close the session.

BackendHTTP requestPHP
0 likes · 4 min read
Mastering PHP curl_setopt: Set HTTP Options Like a Pro
php Courses
php Courses
Jun 11, 2024 · Backend Development

Using curl_exec() in PHP to Retrieve Web Content

This article explains how the PHP cURL library, especially the curl_exec() function, can be used to initialize a session, set options, execute HTTP requests, handle errors, and retrieve remote page content efficiently.

BackendHTTP requestWeb Scraping
0 likes · 4 min read
Using curl_exec() in PHP to Retrieve Web Content
Architecture Digest
Architecture Digest
Apr 11, 2024 · Backend Development

Cool Request: A Free Open‑Source IDEA Plugin for Simplifying SpringBoot Backend API Testing

This article introduces Cool Request, a free open‑source IntelliJ IDEA plugin that automatically extracts SpringBoot controllers, simplifies HTTP request debugging, supports multiple request bodies, pre‑ and post‑scripts, reflection calls, cURL import, Apifox export, global API search, and even provides a static resource server.

API testingCool RequestHTTP request
0 likes · 7 min read
Cool Request: A Free Open‑Source IDEA Plugin for Simplifying SpringBoot Backend API Testing
php Courses
php Courses
Mar 15, 2024 · Backend Development

Using curl_error() to Retrieve cURL Error Messages in PHP

This article explains how to use PHP's curl_error() function to retrieve and handle error messages from cURL HTTP requests, including a step‑by‑step example that creates a cURL handle, sets a URL, executes the request, checks for errors, and closes the handle.

Error HandlingHTTP requestPHP
0 likes · 4 min read
Using curl_error() to Retrieve cURL Error Messages in PHP
php Courses
php Courses
Nov 28, 2023 · Backend Development

Using PHP Network Functions for Remote Requests and Data Transfer

This article explains how to use PHP's built‑in network functions, such as file_get_contents() and curl(), to perform remote HTTP GET and POST requests, including code examples and step‑by‑step explanations for data transmission.

HTTP requestfile_get_contentsnetwork
0 likes · 4 min read
Using PHP Network Functions for Remote Requests and Data Transfer
政采云技术
政采云技术
Dec 13, 2022 · Backend Development

Design and Implementation of an IntelliJ IDEA Plugin for Automatic HTTP Interface Invocation

This article describes how to build an IntelliJ IDEA plugin that parses Spring MVC controller code using PSI to automatically generate HTTP request definitions, handle method and parameter extraction, manage authentication cookies on macOS, and provides the complete source code and usage instructions.

Cookie ExtractionHTTP requestIntelliJ Plugin
0 likes · 13 min read
Design and Implementation of an IntelliJ IDEA Plugin for Automatic HTTP Interface Invocation
The Dominant Programmer
The Dominant Programmer
Jun 15, 2022 · Operations

How to Simulate 20,000 Local Requests with JMeter

This guide shows how to download, configure, and run Apache JMeter on a Windows machine to generate 20,000 HTTP requests locally by setting up a thread group, adding an HTTP sampler, and using listeners such as the Aggregate Report to analyze the load‑test results.

HTTP requestJMeterLoad Testing
0 likes · 3 min read
How to Simulate 20,000 Local Requests with JMeter
Programmer DD
Programmer DD
Oct 26, 2021 · Operations

Kickstart Your Performance Testing: A Beginner’s Guide to JMeter

This step‑by‑step guide introduces beginners to JMeter, covering download, Java setup, creating a thread group, configuring HTTP requests, adding listeners, and running a simple load test to simulate virtual users, enabling you to quickly start performance testing of web applications.

HTTP requestJMeterJava
0 likes · 9 min read
Kickstart Your Performance Testing: A Beginner’s Guide to JMeter
Programmer DD
Programmer DD
Sep 3, 2021 · Backend Development

How to Build a Java SMS Verification System with Spring Boot

This guide walks through the complete backend workflow for generating, sending, and validating SMS verification codes in a Spring Boot application, covering code generation, API integration, session handling, and utility classes with full Java examples.

Code ExampleHTTP requestJava
0 likes · 7 min read
How to Build a Java SMS Verification System with Spring Boot
php Courses
php Courses
Jan 21, 2021 · Backend Development

Handling HTTP Requests and Input Retrieval in Laravel

This article explains how Laravel simplifies accessing request data by using the Illuminate\Http\Request instance, automatic controller injection, and various helper methods to obtain request methods, URLs, and input values, including full, partial, and boolean inputs.

HTTP requestInput HandlingLaravel
0 likes · 5 min read
Handling HTTP Requests and Input Retrieval in Laravel
Laravel Tech Community
Laravel Tech Community
Aug 14, 2020 · Backend Development

How to Access HTTP Request Data in Laravel Controllers

This article explains multiple ways to obtain and work with the current HTTP request in Laravel, covering dependency injection in controllers, route parameters, route closures, URL and method retrieval, input handling (including defaults, arrays, and old data), existence checks, and file uploads, with practical code examples.

BackendHTTP requestrequest validation
0 likes · 5 min read
How to Access HTTP Request Data in Laravel Controllers
Efficient Ops
Efficient Ops
Dec 2, 2018 · Fundamentals

What Really Happens When You Type a URL? From DNS to Browser Rendering

This article walks through the complete journey of a web request—from entering a URL, DNS resolution, TCP three‑way handshake, HTTP request and response, to the browser’s parsing, layout, and painting processes—explaining each step and the underlying protocols in clear detail.

Browser RenderingDNSHTTP request
0 likes · 17 min read
What Really Happens When You Type a URL? From DNS to Browser Rendering