From 39bb5639726c615fbe649a931434f6af0cf4b16b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Pacheco?= Date: Mon, 24 Feb 2025 18:12:03 -0500 Subject: [PATCH] link to API reference --- docs/en/docs/advanced/security/api-key.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/en/docs/advanced/security/api-key.md b/docs/en/docs/advanced/security/api-key.md index dd1abc31c..23b41636b 100644 --- a/docs/en/docs/advanced/security/api-key.md +++ b/docs/en/docs/advanced/security/api-key.md @@ -2,6 +2,7 @@ Another authentication method, particularly for machine-to-machine communication, is an API key. An API key is a string that the application will expect with each request from a particular client. The API key can be sent as a header, a cookie, or a query parameter. + If the API key is missing or invalid, the application returns an HTTP 401 "Unauthorized" error to the client. /// warning @@ -11,6 +12,10 @@ unique API key for each client trying to authenticate. /// +/// tip +Please refer to the [API Reference](../../reference/security/index.md#api-key-security-schemes){.internal-link target=_blank} for specifics on the underlying security schemes used. +/// + ## Simple API Key Auth using Header * Import `APIKeyHeader`. @@ -45,8 +50,6 @@ GET /secure-data HTTP/1.1 Cookie: X-API-KEY=mysecretapikey ``` -https://fastapi.tiangolo.com/reference/security/?h=apikeyheader#api-key-security-schemes - ## API Key Auth using Query Param /// warning