> For the complete documentation index, see [llms.txt](https://guide-api-rest.marmicode.fr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide-api-rest.marmicode.fr/securite-des-apis-rest/oauth-2/oauth-2-client-credentials.md).

# OAuth 2 Client Credentials

Le **Client** peut demander un **Access Token** à l'**Authorization Server** afin d’accéder à ses propres données.

```javascript
POST https://accounts.google.com/token

grant_type=client_credentials
&client_id=CLIENT_ID
&client_secret=CLIENT_SECRET
```
