Skip to content

Commit

Permalink
feat(auth, android): apple sign in support in android (#4188)
Browse files Browse the repository at this point in the history
  • Loading branch information
spezzino authored Sep 1, 2020
1 parent 4aa4fcf commit c6e77a8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1396,6 +1396,8 @@ private AuthCredential getCredentialForProvider(
return TwitterAuthProvider.getCredential(authToken, authSecret);
case "github.com":
return GithubAuthProvider.getCredential(authToken);
case "apple.com":
return OAuthProvider.newCredentialBuilder(provider).setIdTokenWithRawNonce(authToken, authSecret).build();
case "oauth":
return OAuthProvider.getCredential(provider, authToken, authSecret);
case "phone":
Expand Down

1 comment on commit c6e77a8

@vercel
Copy link

@vercel vercel bot commented on c6e77a8 Sep 1, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.