Basic Authentication

As of Adaptix 2.3.0, support for basic authentication can be enabled through Adaptix's Configuration -> API Settings. As with OAuth2, it is only recommended to use basic authentication over HTTPS.

To authorize a request for basic authentication, set an Authorization header.

  1. Combine the username and password of a Adaptix user with a colon :. For example, user:password.
  2. Base64 encode the string from above. dXNlcjpwYXNzd29yZA==.
  3. Add an Authorization header to each API request as Authorization: Basic dXNlcjpwYXNzd29yZA==
  4. At php end, $settings will be an array like this:
1
2
3
4
5
6
<?php
// ApiAuth->newAuth() will accept an array of Auth settings
$settings = [
    'userName'   => '',             // Create a new user       
    'password'   => '',             // Make it a secure password
];

Also, for basic auth, pass 'BasicAuth' in 2nd parameter:

1
2
3
// Initiate the auth object
$initAuth = new ApiAuth();
$auth     = $initAuth->newAuth($settings, 'BasicAuth');