Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Permitir que los usuarios accedan con un sistema de autenticación personalizado
En este documento, se muestra cómo usar Identity Platform para que los usuarios accedan con un sistema de autenticación personalizado. En la autenticación personalizada, se usa un servidor de autenticación para generar tokens firmados personalizados cuando un usuario accede de forma correcta. La app recibe este token y lo usa para autenticar con Identity Platform.
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;// ...});
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Información o código de muestra incorrectos","incorrectInformationOrSampleCode","thumb-down"],["Faltan la información o los ejemplos que necesito","missingTheInformationSamplesINeed","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 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."]]],[]]