Tag

HTTP request

0 views collected around this technical thread.

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.

HTTP requestPHPWeb 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 testingBackend DevelopmentCool Request
0 likes · 7 min read
Cool Request: A Free Open‑Source IDEA Plugin for Simplifying SpringBoot Backend API Testing
php中文网 Courses
php中文网 Courses
Apr 11, 2024 · Backend Development

Using curl_setopt() in PHP cURL: Syntax, Parameters, Return Value, Example, and Explanation

The article explains PHP’s curl_setopt() function, detailing its syntax, parameters, return value, and providing a complete example that demonstrates initializing a cURL session, setting options like URL, GET method, timeout, executing the request, handling errors, and closing the session.

HTTP requestPHPbackend
0 likes · 4 min read
Using curl_setopt() in PHP cURL: Syntax, Parameters, Return Value, Example, and Explanation
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.

HTTP requestPHPcurl
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 requestPHPcurl
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
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Mar 16, 2022 · Backend Development

Node.js HTTP Request Libraries: Six Methods, Code Samples, and Comparison

This article introduces six different methods for making HTTP requests in Node.js, demonstrates each with code examples using the Juejin API, compares their features, installation, and popularity, and provides a concluding recommendation on preferred libraries.

AxiosGotHTTP request
0 likes · 10 min read
Node.js HTTP Request Libraries: Six Methods, Code Samples, and Comparison
转转QA
转转QA
Nov 8, 2021 · Backend Development

Using IntelliJ IDEA Scratch Files and Buffers for Quick Code Testing and MQ Simulation

IntelliJ IDEA provides two temporary editing environments—Scratch files and Scratch buffers—that enable developers to quickly write and run code snippets or HTTP requests, test APIs, simulate MQ messages, and perform white‑box testing without leaving the IDE.

Code TestingHTTP requestIntelliJ IDEA
0 likes · 4 min read
Using IntelliJ IDEA Scratch Files and Buffers for Quick Code Testing and MQ Simulation
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.

Backend DevelopmentHTTP requestInput Handling
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.

HTTP requestLaravelPHP
0 likes · 5 min read
How to Access HTTP Request Data in Laravel Controllers
DevOps Cloud Academy
DevOps Cloud Academy
Oct 27, 2019 · Operations

Integrating Jenkins with GitLab API: Configuration, Groovy Wrapper, and Common Endpoints

This article explains how to integrate Jenkins with GitLab by using the HTTP Request plugin to send API calls, configure pipeline steps, and provides sample Groovy code and a summary of common GitLab API endpoints for operations such as project, branch, tag, and pipeline management.

CI/CDDevOpsGroovy
0 likes · 4 min read
Integrating Jenkins with GitLab API: Configuration, Groovy Wrapper, and Common Endpoints
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.

DNSHTTP requestTCP handshake
0 likes · 17 min read
What Really Happens When You Type a URL? From DNS to Browser Rendering
Python Programming Learning Circle
Python Programming Learning Circle
Jul 26, 2018 · Backend Development

Understanding Laravel Request Instantiation and Its Symfony Foundations

This article explains how Laravel creates HTTP request objects using the Illuminate\Http\Request::capture method, details its reliance on Symfony's request handling via createFromGlobals, and describes the role of global arrays, request factories, and ParameterBag classes in encapsulating request data.

Backend DevelopmentHTTP requestLaravel
0 likes · 4 min read
Understanding Laravel Request Instantiation and Its Symfony Foundations