angular / angular/angularfire

Login with Apple

Offen
#3,319 1 Kommentar 5 Reaktionen 1 zugewiesene Person Beansprucht von @davideast Auf GitHub ansehen
Vorherrschende Sprache
TypeScript
Sterne
7.8k
Forks
2.2k
Ø Merge
22 Std. 28 Min.
Gemergte PRs (30 T.)
6

Beschreibung

Hi,

The Apple login is a little different than Google, Twitter and Facebook login.

With Google Login I use this:
`this.angularFireAuth.signInWithPopup(new firebase.auth.GoogleAuthProvider())
`
For Apple login, there is no object in `firebase.auth.` so I had to use the example provided here: https://firebase.google.com/docs/auth/web/apple?authuser=0&hl=en#web-version-9

```ts
import { getAuth, signInWithPopup, OAuthProvider } from "firebase/auth";

const auth = getAuth();
signInWithPopup(auth, provider)
.then((result) => {
// The signed-in user info.
const user = result.user;

// Apple credential
const credential = OAuthProvider.credentialFromResult(result);
const accessToken = credential.accessToken;
const idToken = credential.idToken;

// IdP data available using getAdditionalUserInfo(result)
// ...
})
.catch((error) => {
// Handle Errors here.
const errorCode = error.code;
const errorMessage = error.message;
// The email of the user's account used.
const email = error.customData.email;
// The credential that was used.
const credential = OAuthProvider.credentialFromError(error);

// ...
});

```

Will you add a AngularFire way for login with Apple?
There is not example at this page: https://github.com/angular/angularfire/blob/master/docs/auth/getting-started.md

Beitragsleitfaden

Beitragsleitfaden öffnen

Bewertung

Dieses Issue wurde noch nicht bewertet.

Neue Issues direkt in Ihr Postfach

Eine kurze Übersicht über anfängerfreundliche GitHub-Issues.