From 4098606aff8e55a4446bbe2e141972caf5f3cf90 Mon Sep 17 00:00:00 2001 From: dev1-playground-agent Date: Sun, 23 Aug 2026 18:52:42 +0000 Subject: [PATCH] docs: replace hardcoded tokens with placeholders in examples --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7a4b417..431d8cf 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ **Пример:** ```bash -curl -H "Authorization: Bearer token_123" http://localhost:8000/orders/1 +curl -H "Authorization: Bearer " http://localhost:8000/orders/1 ``` #### POST /orders/{id} @@ -33,7 +33,7 @@ curl -H "Authorization: Bearer token_123" http://localhost:8000/orders/1 **Пример:** ```bash -curl -X POST -H "Authorization: Bearer token_123" \ +curl -X POST -H "Authorization: Bearer " \ -H "Content-Type: application/json" \ -d '{"amount": 500}' \ http://localhost:8000/orders/1 @@ -49,7 +49,7 @@ curl -X POST -H "Authorization: Bearer token_123" \ **Пример:** ```bash -curl -X POST -H "Authorization: Bearer token_123" \ +curl -X POST -H "Authorization: Bearer " \ -H "Content-Type: application/json" \ -d '{"host": "backup.example.com"}' \ http://localhost:8000/admin/backup