Restez organisé à l'aide des collections
Enregistrez et classez les contenus selon vos préférences.
Procéder à la connexion des utilisateurs avec un système d'authentification personnalisé
Ce document explique comment utiliser Identity Platform pour connecter les utilisateurs avec un système d'authentification personnalisé. Dans l'authentification personnalisée, vous utilisez un serveur d'authentification pour générer des jetons signés personnalisés lorsqu'un utilisateur se connecte avec succès. Votre application reçoit ce jeton et l'utilise pour s'authentifier auprès d'Identity Platform.
Collectez les identifiants de connexion de l'utilisateur.
Envoyez les identifiants à votre serveur. Votre serveur valide la requête et renvoie un jeton JWT personnalisé.
Transmettez le jeton JWT à signInWithCustomToken() pour authentifier l'utilisateur avec Identity Platform :
Version Web 9
import{getAuth,signInWithCustomToken}from"firebase/auth";constauth=getAuth();signInWithCustomToken(auth,token).then((userCredential)=>{// Signed inconstuser=userCredential.user;// ...}).catch((error)=>{consterrorCode=error.code;consterrorMessage=error.message;// ...});
firebase.auth().signInWithCustomToken(token).then((userCredential)=>{// Signed invaruser=userCredential.user;// ...}).catch((error)=>{varerrorCode=error.code;varerrorMessage=error.message;// ...});
Utilisez l'API REST pour intégrer Identity Platform à d'autres parties de votre système d'authentification personnalisée.
Sauf indication contraire, le contenu de cette page est régi par une licence Creative Commons Attribution 4.0, et les échantillons de code sont régis par une licence Apache 2.0. Pour en savoir plus, consultez les Règles du site Google Developers. Java est une marque déposée d'Oracle et/ou de ses sociétés affiliées.
Dernière mise à jour le 2025/04/03 (UTC).
[[["Facile à comprendre","easyToUnderstand","thumb-up"],["J'ai pu résoudre mon problème","solvedMyProblem","thumb-up"],["Autre","otherUp","thumb-up"]],[["Difficile à comprendre","hardToUnderstand","thumb-down"],["Informations ou exemple de code incorrects","incorrectInformationOrSampleCode","thumb-down"],["Il n'y a pas l'information/les exemples dont j'ai besoin","missingTheInformationSamplesINeed","thumb-down"],["Problème de traduction","translationIssue","thumb-down"],["Autre","otherDown","thumb-down"]],["Dernière mise à jour le 2025/04/03 (UTC)."],[[["This guide details how to use Identity Platform for user sign-in with a custom authentication system, leveraging custom signed tokens generated by your authentication server."],["Before implementing custom authentication, you should consider migrating users if Identity Platform natively supports your app's sign-in method."],["The sign-in process involves collecting user credentials, sending them to your server for validation, receiving a custom JWT, and then using `signInWithCustomToken()` to authenticate the user with Identity Platform."],["To begin, you will need to install the client SDK and ensure that your server can accept user credentials and mint custom tokens."],["Once the user is signed in, you can then configure custom claims and integrate Identity Platform using the REST API."]]],[]]