From d9a9bfd614f83c98623a31709049e2fd384a969c Mon Sep 17 00:00:00 2001 From: Guilherme Cassolato Date: Wed, 25 Oct 2023 18:18:26 +0200 Subject: [PATCH] docs: enhanced curl command in the authenticated rl user guide --- .../authenticated-rate-limiting-envoy-dynamic-metadata.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user-guides/authenticated-rate-limiting-envoy-dynamic-metadata.md b/docs/user-guides/authenticated-rate-limiting-envoy-dynamic-metadata.md index 01210eee..5d7714a9 100644 --- a/docs/user-guides/authenticated-rate-limiting-envoy-dynamic-metadata.md +++ b/docs/user-guides/authenticated-rate-limiting-envoy-dynamic-metadata.md @@ -215,7 +215,7 @@ EOF As John: ```sh -curl -H 'Authorization: APIKEY ndyBzreUzF4zqDQsqSPMHkRhriEOtcRx' http://talker-api.127.0.0.1.nip.io:8000/hello +curl -H 'Authorization: APIKEY ndyBzreUzF4zqDQsqSPMHkRhriEOtcRx' http://talker-api.127.0.0.1.nip.io:8000/hello -i # HTTP/1.1 200 OK ``` @@ -224,7 +224,7 @@ Repeat the request a few more times within the 60-second time window, until the While the API is still limited to John, send requests as Jane: ```sh -curl -H 'Authorization: APIKEY 7BNaTmYGItSzXiwQLNHu82+x52p1XHgY' http://talker-api.127.0.0.1.nip.io:8000/hello +curl -H 'Authorization: APIKEY 7BNaTmYGItSzXiwQLNHu82+x52p1XHgY' http://talker-api.127.0.0.1.nip.io:8000/hello -i # HTTP/1.1 200 OK ```