Availability
This routine is available starting with katl-commons 4.0.17
Syntax
httpBasicAuthHeader(username, password)
Description
Creates a HttpHeader object to be used as Authorization header for a Basic authentication of a user.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
username | string | Yes | The username. |
password | string | Yes | The password. |
Return type
HttpHeader
Example
HttpHeader authHeader = httpBasicAuthHeader("admin", "admin");
See also