CSSS API Overview#
LinksField Element traffic management platform CSSS API follows the HTTP specification.
This document has the highest accuracy as the replacement version of other offline/online documents such as document 'Enterprise Gateway Generic Interface -3.0 JSON version (Feishu cloud document)', 'Linke Internet of Things Business Docking Interface Protocol (JSON format universal version) _ Device type integrated version v1.3.pdf'. If there is any conflict between the contents of this document and other documents, the contents of this document prevail.Production#
baseUrl = "https://apiv3.linksfield.net"
Parameter | Example | Description |
---|
Accept-Language | zh-CH | Supports zh-CN |
Content-Type | application/json | |
Global parameter#
For the POST/PUT/DELETE method, the global parameter is in the body.
GET, the global parameters are in Query
Parameter | Example | Description |
---|
version | 2.0 | Version, default value 2.0 |
| | |
access_code | P012345 | The Partner code provided by Linksfield to the customer |
| | |
timestamp | 1640917845984 | timestamp |
sign | | sign |
Sign#
1.
All non-empty parameters (including path, query, and body) are signed with the JSON String of key value in lexicographic order.
signContent = "{"version":"2.0","access_code":"P012345","timestamp":"1498723232"}"
2.
Encrypt signContent data using the HMAC-SHA1 algorithm.
sign = HMAC-SHA1(signContent,secret);
3.
The encrypted content is Base64 encoded.
sign = Base64Encode(sign)
Please apply for the enterprise key (access_code, secret) to Linksfield Sales /FAE
Modified at 2022-10-05 04:16:49