Ein kopierfertiger Einrichtungsvorschlag mit den Installationsanweisungen und der vollständigen Markdown-Dokumentation für diesen Plugin kopieren.
Übersicht
Übersicht@capgo/capacitor-social-login Auth0 unterstützt Capgo in zwei Arten:
SocialLoginAuthConnectmit derauth0vordefinierten- Direkt
oauth2Konfiguration, wenn Sie die volle Kontrolle über Endpunkte haben möchten
Beispiel für die Auth-Connect-Voreinstellung
Abschnitt mit dem Titel „Beispiel für die Auth-Connect-Voreinstellung“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 Dokumentationen
Abschnitt: Zugehörige DokumentationenWeitermachen von Auth0
Abschnitt: Weitermachen von Auth0Wenn Sie Auth0 verwenden, um Auth0 Authentifizierung und Kontoflusspläne zu planen, verbinden Sie es mit Mit @capgo/capacitor-social-login für die native Fähigkeit in Mit @capgo/capacitor-social-login, @capgo/capacitor-social-login for the implementation detail in @capgo/capacitor-social-login, @capgo/capacitor-passkey for the implementation detail in @capgo/capacitor-passkey, @capgo/capacitor-native-biometric for the implementation detail in @capgo/capacitor-native-biometric, and Zwei-Faktor-Authentifizierung für die Implementierungsdetails in Zwei-Faktor-Authentifizierung.