README update

This commit is contained in:
Ara Sadoyan
2025-05-03 14:04:05 +02:00
parent c09f2e0932
commit 7fb26e38bc

View File

@@ -196,10 +196,18 @@ echo $TOK
**Example Request with JWT token**
With `Authorization: Bearer` header
```bash
curl -H "Authorization: Bearer ${TOK}" -H 'Host: myip.mydomain.com' http://127.0.0.1:6193/
```
With URL parameter (Very useful if you want to generate and share temporary links)
```bash
curl -H 'Host: myip.mydomain.com' "http://127.0.0.1:6193/?gazantoken=${TOK}`"
```
**Example Request with API Key**
```bash