3 Repos
Sends HTTP GET requests with query parameters and returns responses through callbacks.
Distinct from Request Execution: Distinct from Request Execution: focuses specifically on GET requests with callback-based response handling, not general request execution.
Explore 3 awesome GitHub repositories matching networking & communication · GET Request Executions. Refine with filters or upvote what's useful.
OkHttpUtils is a convenience wrapper for the OkHttp HTTP client that simplifies common networking operations on Android. It provides a straightforward interface for executing GET and POST requests, including sending form parameters and JSON payloads, as well as uploading files via multipart form data and downloading remote files to local storage. The library distinguishes itself through a set of practical utilities built on top of OkHttp's core architecture. It wraps synchronous calls into an asynchronous callback pattern, includes an interceptor-based logging layer for request and response d
Provides a primary interface for executing HTTP GET requests with query parameters.
VCR is a Ruby library that records and replays HTTP interactions during test runs, storing them in serialized cassette files. It captures real HTTP requests and responses, then serves those recorded responses instead of making actual network calls, enabling fast and deterministic test suites that work offline. The library provides configurable request matching, allowing comparisons based on method, URI, host, path, body, or headers to find the correct recorded response. It supports scheduled cassette re-recording to automatically refresh stored interactions at a configurable interval, keeping
Prevents any HTTP request not explicitly allowed or recorded in a cassette from being executed.
🚀 A Complete Fast Android Networking Library that also supports HTTP/2 🚀
Executes HTTP GET requests with query parameters and returns responses through observable streams.