tag

http

6 indexed skills · max 10 per page

skills (6)

http-api-cloudbase

tencentcloudbase/skills · Cloud

1

HTTP API access to CloudBase platform features including database, authentication, functions, storage, and hosting. \n \n Supports MySQL RESTful API for CRUD operations on database tables via GET, POST, PATCH, DELETE endpoints with field selection, filtering, pagination, and sorting \n Requires authentication via AccessToken (user permissions), API Key (admin permissions), or Publishable Key (anonymous access); tokens passed in Authorization header \n Provides unified domain endpoints for domest

flutter-handling-http-and-json

flutter/skills · Productivity

0

HTTP requests and JSON serialization for Flutter REST API integration and data parsing. \n \n Covers three HTTP methods (GET, POST, PUT, DELETE) with proper status code validation, HTTPS enforcement, and safe URI construction using Uri.https() . \n Offers two serialization strategies: manual fromJson / toJson for simple models, and code generation with json_serializable for complex nested structures. \n Includes background parsing with compute() to prevent UI jank when processing large JSON payl

flutter-http-and-json

flutter/skills · Productivity

0

Secure HTTP networking and JSON handling for Flutter apps with background parsing support. \n \n Implements CRUD operations (GET, POST, PUT, DELETE) using the http package with safe URL construction via Uri.https() and strict status code validation \n Provides strongly typed JSON serialization and deserialization using Dart 3 pattern matching with factory constructors and toJson() methods \n Offloads large JSON parsing to background isolates via compute() to prevent UI jank on payloads exceeding

convex-http-actions

waynesutton/convexskills · Productivity

0

HTTP endpoints for webhooks, external API integrations, and custom routes in Convex applications. \n \n Supports multiple HTTP methods and path matching with dynamic route parameters via pathPrefix for flexible endpoint design \n Handles diverse request types including JSON bodies, form data, raw bytes, and file uploads with built-in storage integration \n Includes webhook signature verification patterns for Stripe, GitHub, and Clerk with examples for secure event processing \n Provides authenti

golang-http-frameworks

bobmatnyc/claude-mpm-skills · Backend

0

Go provides exceptional HTTP capabilities starting with the standard library's net/http package. Go 1.22+ introduced enhanced pattern routing in ServeMux, making stdlib viable for many applications. For more complex needs, frameworks like Chi, Gin, Echo, and Fiber offer additional features while maintaining Go's simplicity and performance.

angular-http

analogjs/angular-skills · Productivity

0

Signal-based HTTP data fetching with httpResource(), resource(), and HttpClient for Angular v20+. \n \n httpResource() provides reactive HTTP requests with automatic refetching when dependencies change, built-in loading/error states, and manual reload/set/update actions \n resource() handles generic async operations with conditional loading, abort signal support, and customizable default values \n Functional interceptors for authentication, error handling, and logging integrate via withIntercept