Auth0
Eine Einrichtungsanweisung mit den Installationsanweisungen und der vollständigen Markdown-Guide für diesen Plugin kopieren.
Übersicht
Abschnitt mit dem Titel „Übersicht“@capgo/capacitor-social-login Unterstützt Auth0 auf zwei Arten:
SocialLoginAuthConnectmit derauth0Voreinstellung- Direkt
oauth2Konfiguration, wenn Sie über Endpunkte vollständige Kontrolle haben möchten
Beispiel für die Voreinstellung Auth Connect
Abschnitt mit dem Titel “Beispiel für die Voreinstellung Auth Connect”import { SocialLoginAuthConnect } from '@capgo/capacitor-social-login';
await SocialLoginAuthConnect.initialize({ authConnect: { auth0: { domain: 'https://your-tenant.auth0.com', clientId: 'your-auth0-client-id', redirectUrl: 'myapp://oauth/auth0', audience: 'https://your-api.example.com', }, },});
const result = await SocialLoginAuthConnect.login({ provider: 'auth0',});Direktes OAuth2-Beispiel
Abschnitt mit dem Titel “Direktes OAuth2-Beispiel”import { SocialLogin } from '@capgo/capacitor-social-login';
await SocialLogin.initialize({ oauth2: { auth0: { appId: 'your-auth0-client-id', authorizationBaseUrl: 'https://your-tenant.auth0.com/authorize', accessTokenEndpoint: 'https://your-tenant.auth0.com/oauth/token', redirectUrl: 'myapp://oauth/auth0', scope: 'openid profile email offline_access', pkceEnabled: true, additionalParameters: { audience: 'https://your-api.example.com', }, logoutUrl: 'https://your-tenant.auth0.com/v2/logout', }, },});
const result = await SocialLogin.login({ provider: 'oauth2', options: { providerId: 'auth0', },});Zugehörige Dokumentation
Abschnitt mit dem Titel “Zugehörige Dokumentation”Weitermachen mit Auth0
Abschnitt mit dem Titel “Weitermachen mit Auth0”Wenn Sie Authentifizierung und Kontoflows planen, verbinden Sie es mit Auth0 Auth0 Verwenden Sie @capgo/capacitor-social-login für die native Fähigkeit in Verwenden Sie @capgo/capacitor-social-login Verwenden Sie @capgo/capacitor-social-login für die Implementierungsdetail in @capgo/capacitor-social-login @capgo/capacitor-passkey für die Implementierungsdetails in @capgo/capacitor-passkey, @capgo/capacitor-native-biometric für die Implementierungsdetails in @capgo/capacitor-native-biometric, und Zwei-Faktor-Authentifizierung für die Implementierungsdetails in Zwei-Faktor-Authentifizierung.