Authorization
In order to perform actions with the Kekker platform API, you need to add an authorization header to all your requests. We use Basic Authorization, which is a string in the form of:
Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=
Basic
word is followed by a BASE64 string constructed from your login:password
.
Create your header in a few steps:
- Get your login and password and form a string like
your_login:your_password
- Copy it, go to any online tool for encoding a BASE64 string and encode your credentials
- Provide an
Authorization
header with contentBasic
followed by the encoded string - Make sure your header is included in every request.