mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-02 06:55:08 +03:00
15 lines
374 B
Plaintext
15 lines
374 B
Plaintext
|
GET http://bob:secret@localhost:8000/basic-authentication-per-request
|
||
|
HTTP/1.0 200
|
||
|
```You are authenticated```
|
||
|
|
||
|
GET http://localhost:8000/basic-authentication-per-request
|
||
|
Authorization: Basic Ym9iOnNlY3JldA==
|
||
|
HTTP/1.0 200
|
||
|
```You are authenticated```
|
||
|
|
||
|
GET http://localhost:8000/basic-authentication-per-request
|
||
|
[BasicAuth]
|
||
|
bob:secret
|
||
|
HTTP/1.0 200
|
||
|
```You are authenticated```
|