Browse Source

link to API reference

pull/13419/head
José Pacheco 1 month ago
parent
commit
39bb563972
  1. 7
      docs/en/docs/advanced/security/api-key.md

7
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.
<!-- TODO: currently we return 403 in the implementation! discuss with @tiangolo et al -->
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

Loading…
Cancel
Save