3 个仓库
Executing GET, POST, PUT, DELETE, HEAD, and PATCH requests with path and query parameters, headers, and priority settings.
Distinct from Request Execution: Distinct from Request Execution: covers multiple HTTP methods with priority settings, not just general execution.
Explore 3 awesome GitHub repositories matching networking & communication · HTTP Method Executions. Refine with filters or upvote what's useful.
C++ 是一个高级 HTTP 客户端库和 libcurl 的封装。它提供了一个 C++ 接口,用于发起网络请求、管理网络会话和实现数据传输。 该库的独特之处在于提供了一个能够通过回调接口执行非阻塞请求的异步 HTTP 客户端。它还作为一个用于传输文件和结构化数据的多部分表单上传器,以及一个用于通过持久连接处理实时服务器发送事件 (SSE) 的流处理器。 其更广泛的能力涵盖通过 SSL 加密和请求身份验证进行的安全 Web 通信。它包括用于通过 Cookie 持久化、代理路由和请求超时控制进行会话状态管理的工具。 该实现利用 RAII 资源管理来处理网络句柄和会话对象的生命周期。
Enables sending network requests using standard HTTP methods like GET, POST, PUT, DELETE, and PATCH.
AndroidNetworking is an HTTP networking library for Android that handles the full lifecycle of network communication, from sending requests to parsing responses and caching data. It provides a unified interface for executing GET, POST, PUT, DELETE, HEAD, and PATCH requests, with support for both synchronous and asynchronous execution, and includes built-in JSON response parsing that converts server responses directly into Java objects or lists. The library distinguishes itself through a set of integrated capabilities that go beyond basic request execution. It manages file downloads and upload
Executes GET, POST, PUT, DELETE, HEAD, and PATCH requests with path and query parameters, headers, and priority settings.
This project is a library of automation scripts designed for the BoxJs environment. It functions as an external API client and integration interface for interacting with remote servers. The system provides a persistent local data store to maintain state between script executions by saving and retrieving strings and JSON objects. It enables data exchange through structured JSON objects and supports both synchronous and asynchronous network requests using custom headers.
Executes various HTTP methods with custom headers to exchange data with remote servers.