We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15e5517 commit f28a5ceCopy full SHA for f28a5ce
library/src/main/java/com/firebase/ui/auth/google/GoogleOAuthTask.java
@@ -23,6 +23,8 @@ protected String doInBackground(String... emails) {
23
24
try {
25
token = GoogleAuthUtil.getToken(mContext, emails[0], "oauth2:profile email");
26
+ // since we're immediately exchanging this token for a Firebase JWT token, we don't need to store it
27
+ GoogleAuthUtil.clearToken(mContext, token);
28
} catch (UserRecoverableAuthException e) {
29
Log.e(TAG, "Error getting token", e);
30
} catch (GoogleAuthException e) {
0 commit comments