Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

This page is writing about the correct steps to configure the required request headers before sending an API request at HCP OpenAPI.

HikCentral Professional (HCP) v2.4.1 is used.

Prerequisite

  1. APPkey (header: X-Ca-Key)

  2. APPsecret (used for the formation of signature string)

  3. Signature String (header: X-Ca-Signature)

APPkey and APPsecret

Both APPkey and APPsecret can be found after creating a partner at Open Platform (https://IPaddress/artemis-web > Partner Management).

APPkey is included in the request header, while APPsecret is used for the calculation of signature string.

Signature String

  1. Form a string with the request method, header’s Accept and URI, separated by “\n“

 Guide on forming the string

Example 1: POST /artemis/api/example?qa=value1&qb=value2&qc ; Accept = */*

String: “POST\n*/*\n/artemis/api/example?qa=value1&qb=value2&qc“

Example 2: POST /artemis/api/example ; Accept = application/json

String: “POST\napplication/json\n/artemis/api/example“

URI must start with “/“, contain the endpoint and request parameters.

  1. Convert the string with HmacSHA256 algorithm and APPsecret as the key, to generate message digest.

  2. Encode the message digest in Base64, to generate the signature string.

Prepare the request header

Use the APPkey and Signature String to form the request header.

{
    'X-Ca-Key': <APPkey>,
    'X-Ca-Signature': <Signature String>
}

Sample Code

Calculating Signature String

def generate_signature(app_key, app_secret, method, path):
    message = f"{method}\n*/*\n/artemis/api/example"

    key_bytes = bytes(app_secret, 'utf-8') # key
    message_bytes = bytes(message, 'utf-8') # message
    signature = hmac.new(key_bytes, msg=message_bytes, digestmod=hashlib.sha256).digest()

    encoded_signature = base64.b64encode(signature).decode('utf-8')

    return encoded_signature

Creating the request header

headers = {
    'X-Ca-Key': app_key,
    'X-Ca-Signature': signature
}

  • No labels