feat(firebase-authentication): add signInWithApple method (#3597)

This commit is contained in:
Jonathan Fernandez 2021-01-23 11:11:26 -06:00 committed by GitHub
parent 3e92f64484
commit e7bc1b6709
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -126,6 +126,16 @@ export class FirebaseAuthentication extends IonicNativePlugin {
return;
}
/**
* Uses Apples's idToken and rawNonce (optional) to sign-in into firebase account. In order to retrieve those tokens follow instructions for Android and iOS
* @param idToken ID Token
* @param rawNonce Access Token
*/
@Cordova({ sync: true })
signInWithApple(identityToken: string, rawNonce?: string): Promise<any> {
return;
}
/**
* Uses Facebook's accessToken to sign-in into firebase account. In order to retrieve those tokens follow instructions for Android and iOS.
* @param accessToken Access Token