This is documentation for the next version of K6. For the latest stable release, go to the latest version.
addHeader( key, value )
Parameter | Type | Description |
---|---|---|
name | string | Header name |
value | string | Header value |
Example
import { Httpx } from 'https://jslib.k6.io/httpx/0.1.0/index.js';
const session = new Httpx({ baseURL: 'https://test-api.k6.io' });
session.addHeader('Authorization', 'token1');
export default function () {
session.get('/public/crocodiles/1/');
}