What problem does it solve?
It removes guesswork when integrating CloudBase platform capabilities by giving you a reliable way to call official CloudBase HTTP endpoints with correct authentication, routing, and request shapes.
Core Features & Use Cases
- Raw HTTP integration for non-SDK clients: Use official CloudBase platform APIs from Android/iOS/Flutter/React Native and backend services that can’t rely on CloudBase SDKs.
- Swagger-driven endpoint correctness: Ensures you build requests from OpenAPI specs (mysqldb, functions, auth, cloudrun, storage) instead of inventing endpoints.
- Production-ready request essentials: Covers regional gateway base URLs, Bearer token header usage, URL encoding, and common failure modes for database and function workflows.
Example use case: an admin script or integration test written in Go/Python must query MySQL RESTful data (select, pagination, filtering) directly through CloudBase’s MySQL HTTP interface.
Quick Start
Use the HTTP API Routing Checklist, then request the required OpenAPI spec with searchKnowledgeBase (mode=openapi, apiName=mysqldb), and finally construct your HTTP requests against the correct regional gateway base URL with an Authorization: Bearer <token> header.