Signature v2
TIP
TIP
X-LF-Signature-Type:2.0
in the header if signature v2 is used for the api.Process
1.
2.
3.
4.
sign= Sign(message, algo=sha1withRSA, key=privateKey)
Construct message to be signed
1. Header
timestamp
and nonce
are required to be present in the request header - and they should be included in the message in String
format for signing. There is another optional header X-LF-Signature-Type
to indicate different Signature version but it's NOT required in signature.Field | Location | Required | In message to be signed | Remarks |
---|---|---|---|---|
timestamp | Header | Required | Yes | UTC epoch time, in millisecond |
nonce | Header | Optional | Yes | Random integer value |
X-LF-Signature-Type | Header | Optional | No | Default: 1.0 for apis before 2023 March 01, 2.0 for apis after 2023 March 01 |
TIP
10
minutes from time of request2. URI and Path
x-sign-uri
.3. Query
String
format regardless of its data type in the API definition.4. Body
5. Message construction
Steps:
same as V1
1.
2.
3.
TIP
for example,
before sorting
{
...
"message": {
"type":1,
"content":"xxx"
}
}
{...,"message":{"content":"xxxx","type":1,...}
WARNING
Example: GET
//Example
# Header
timestamp: 1674197059220
nonce: 1
# Assume API is: GET https://api.linksfield.net/cube/v4/sims/{sim_id}/usage
# path parameter: sim_id = 89852002021102915651
# query parameters: begin_from , end_by , category, period_type
GET https://api.linksfield.net/cube/v4/sims/89852002021102915651/usage?begin_from=2023-01&category=data&end_by=2023-01&period_type=2
# Message for signing, after sorting and JSON Stringifying
{"begin_from":"2023-01","category_type":"data","end_by":"2023-01","nonce":"1","period_type":"2","timestamp":"1674197059220","x-sign-uri":"/cube/v4/sims/89852002021102915651/usage"}
Example: POST
# Header
timestamp: 1674197059220
nonce: 1
# Assume API is: POST https://api.io.linksfield.net/cube/v4/sims/{sim_id}/bundle
POST https://api.linksfield.net/cube/v4/sims/89000100010003125832/bundle
{
"bundle_id": "LP09823222320",
"bundle_type": 10,
"cycles": 3
}
# Message for signing
{"bundle_id":"LP09823222320","bundle_type":10,"cycles":3,"nonce":"1","timestamp":"1674197059220","x-sign-uri":"/cube/v4/sims/89000100010003125832/bundle"}
Modified at 2025-02-18 01:09:29