function BasicAuthTestTrait::getBasicAuthHeaders
Returns HTTP headers that can be used for basic authentication in Curl.
Parameters
string $username: The username to use for basic authentication.
string $password: The password to use for basic authentication.
Return value
array An array of raw request headers as used by curl_setopt().
1 call to BasicAuthTestTrait::getBasicAuthHeaders()
- BasicAuthTestTrait::basicAuthGet in core/modules/ basic_auth/ tests/ src/ Traits/ BasicAuthTestTrait.php 
- Retrieves a Drupal path or an absolute path using basic authentication.
File
- 
              core/modules/ basic_auth/ tests/ src/ Traits/ BasicAuthTestTrait.php, line 40 
Class
- BasicAuthTestTrait
- Provides common functionality for Basic Authentication test classes.
Namespace
Drupal\Tests\basic_auth\TraitsCode
protected function getBasicAuthHeaders($username, $password) {
  // Set up Curl to use basic authentication with the test user's credentials.
  return [
    'Authorization' => 'Basic ' . base64_encode("{$username}:{$password}"),
  ];
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
