> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.generaltranslation.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Vérification du caractère confidentiel ou public d’une application

> Explique comment vérifier si une application est enregistrée auprès d’Auth0 en tant qu’application confidentielle ou publique à l’aide du Auth0 Management Dashboard.

Vous pouvez vérifier si une application est enregistrée auprès d’Auth0 en tant qu’application confidentielle ou publique. Pour en savoir plus, lisez [Application confidentielle et publique](/docs/fr-CA/fr-ca/get-started/applications/confidential-and-public-applications).

Auth0 détermine si une application est confidentielle ou publique en fonction du paramètre **Méthode d’authentification** qui définit comment une application s’authentifie auprès du point de terminaison [Obtenir un jeton](https://auth0.com/docs/api/authentication#get-token) de la Auth0 Authentication API.

1. Dans le Auth0 Dashboard, allez dans [Applications > Applications](https://manage.auth0.com/#/applications), puis sélectionnez le nom de l’application à afficher.
2. Si la section **Identifiants** n’est pas disponible, cela signifie qu’il s’agit d’une application publique.
3. Si la section **Identifiants Auth0** est disponible, sélectionnez-la et localisez le champ **Méthode d’authentification**.

   <Frame>
     <img src="https://mintcdn.com/generaltranslationinc/3aRX_yPVEOtgRzDg/docs/images/fr-ca/cdy7uua7fh8z/33kfi48tkbMIOQJ8PBxj76/3a37d4906b80c31d5427b852f56cdb00/Default_App_-_Creds_-_French.png?fit=max&auto=format&n=3aRX_yPVEOtgRzDg&q=85&s=bb92160402188f9c15e9273b538e01c7" alt="Configuration de l’authentification JWT Private Key (Clé privée JWT) - Instructions pour le Auth0 Dashboard (Tableau de bord Auth0)" width="1102" height="1188" data-path="docs/images/fr-ca/cdy7uua7fh8z/33kfi48tkbMIOQJ8PBxj76/3a37d4906b80c31d5427b852f56cdb00/Default_App_-_Creds_-_French.png" />
   </Frame>

Utilisez la méthode applicable :

* **Aucune**: Application publique sans secret client.
* **Publication du secret client** : Application utilisant les paramètres du corps de la requête POST pour envoyer un secret client.
* **Secret client de base** : Application utilisant le schéma d’authentification HTTP BASIC pour envoyer un secret client.
* **Clé privée <Tooltip href="/docs/fr-CA/fr-ca/glossary?term=json-web-token" tip="Jeton Web JSON (JWT)
  Format standard de jeton d’ID (et souvent de jeton d’accès) utilisé pour représenter en toute sécurité des demandes entre deux parties." cta="Voir le glossaire">JWT</Tooltip>** : Application utilisant l’authentification asymétrique.

Ces valeurs correspondent aux applications confidentielles et publiques comme suit :

<table class="table">
  <thead>
    <tr>
      <th><strong>Type d’application</strong></th>
      <th><strong>Exemple</strong></th>
      <th><strong>Méthode d’authentification du point de terminaison du jeton</strong></th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td><strong>Publique</strong></td>
      <td>À page unique ou natives</td>
      <td><strong>Aucun</strong></td>
    </tr>

    <tr>
      <td><strong>Confidentielle</strong></td>
      <td>Web standards ou communication entre machines</td>
      <td><strong>Basic</strong>, <strong>Post</strong>, <strong>clé privée JWT</strong>, <strong>Non spécifié</strong></td>
    </tr>
  </tbody>
</table>

Les applications publiques ne sont pas en mesure d’assurer la confidentialité des informations d’identification requises pour les méthodes d’authentification par point de terminaison de jeton, comme **Post** et **Basic**.
