Overview
The LiquidCommerce Cloud SDK provides an easy way to interact with our APIs through a server-side SDK for Node.js and Web JS script.
Last updated
The LiquidCommerce Cloud SDK provides an easy way to interact with our APIs through a server-side SDK for Node.js and Web JS script.
Last updated
GitHub Repository: For the latest source code, issues, and contribution guidelines, visit our . Star the repo to stay updated with the latest changes.
The LiquidCommerce Cloud SDK uses API keys to authenticate requests. You can request your keys from your Partnerships liaison.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
All API requests in production must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
We've included a comprehensive demo application to help you quickly understand how to implement the LiquidCommerce Cloud SDK in real-world scenarios.
Clone the repository:
Navigate to the demo directory
Add your API keys to the demo:
Open the demo directory in a code editor
Locate and edit the index.html
file
Replace the placeholder values with your actual API keys:
Save the file
β οΈ Note: Keep your API keys secure and never commit them to public repositories.
Start the development server by either:
Running npm run dev
and opening http://localhost:3000/
Opening the file directly in your browser
This browser-based demo demonstrates client-side implementation of the LiquidCommerce Cloud SDK including:
SDK initialization in the browser
API authentication flow
Address validation
Catalog browsing and product search
Shopping cart integration
User account management and session handling
Payment integration
Interactive checkout process
The demo uses vanilla JavaScript to ensure compatibility and clear understanding of SDK implementation without framework-specific code. π