@capacitor-community/apple-sign-in
v7.1.0
Published
Capacitor Sign in with Apple
Maintainers
Readme
Capacitor Sign in With Apple
Capacitor plugin to support Sign in With Apple
Installation
npm i @capacitor-community/apple-sign-innpx cap update
Usage (iOS, Web)
import {
SignInWithApple,
SignInWithAppleResponse,
SignInWithAppleOptions,
} from '@capacitor-community/apple-sign-in';
const options: SignInWithAppleOptions = {
clientId: 'com.your.webservice',
redirectURI: 'https://www.yourfrontend.com/login',
scopes: 'email name',
state: '12345',
nonce: 'nonce',
};
SignInWithApple.authorize(options)
.then((result: SignInWithAppleResponse) => {
// Handle user information
// Validate token with server and create new session
})
.catch(error => {
// Handle error
});Instructions (Android)
Not supported.
