Authentication

To secure client server communication, every API call should be authorized. Nusagate uses Basic Auth

  1. Obtain your api key and secret key from Dashboard. Save your secret key, cause that will be hidden after generated

  2. The Authorization header need to be in the form Basic Base64Encoded (apiKey:secretKey). Example: Authorization: Basic abcdef123456

  3. To get the encoded string you need to concat your API key and API secret with a colon (:) and encode it with base64 encoding.

Last updated