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.

API Key

17339bd7a7bc84018f2dc7b933da62ac802ad74c

Secret Key

89e7cca86329c7c0cdb897236ade0ac2c0cbc975

Basic Auth format

17339bd7a7bc84018f2dc7b933da62ac802ad74c:89e7cca86329c7c0cdb897236ade0ac2c0cbc975

Base64

MTczMzliZDdhN2JjODQwMThmMmRjN2I5MzNkYTYyYWM4MDJhZDc0Yzo4OWU3Y2NhODYzMjljN2MwY2RiODk3MjM2YWRlMGFjMmMwY2JjOTc1

Authorization

Basic MTczMzliZDdhN2JjODQwMThmMmRjN2I5MzNkYTYyYWM4MDJhZDc0Yzo4OWU3Y2NhODYzMjljN2MwY2RiODk3MjM2YWRlMGFjMmMwY2JjOTc1

Last updated