feat(firebase-authentication): add signInWithApple method (#3597)
This commit is contained in:
parent
3e92f64484
commit
e7bc1b6709
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user