OpenAPI Authentication Guide
This guide explains how to authenticate and use the ASO World OpenAPI.Getting Started#
Step 1: Obtain Your OpenAPI Token#
Attach the token to the Authorization header of your HTTP request using the following format:Authorization: Bearer your_open_api_token
Replace your_open_api_token with your actual token from the profile page
The token must be prefixed with Bearer (note the space after "Bearer")
Keep your token secure and do not share it publicly
API Base URL#
All API requests should use the following base URL:POST https://asoworld.com/openApi
The complete request format follows this pattern:POST https://asoworld.com/openApi{endpoint_path}
Example Requests#
Create Order#
Authentication Examples#
cURL Example#
JavaScript Example#
Python Example#
Best Practices#
1.
Secure Token Storage: Store your API token securely and never expose it in client-side code
2.
Token Rotation: Regularly rotate your API token for security
3.
Rate Limiting: Respect API rate limits to avoid being blocked
4.
Error Handling: Implement proper error handling for authentication failures
5.
HTTPS Only: Always use HTTPS for API requests to protect your token
Common Issues#
1.
Ensure you're using POST method
Verify the base URL is correct
Check Content-Type header is set to application/json
2.
Check for any extra spaces or characters in your token
Modified at 2026-02-03 11:51:19