firebase-authentication

Fake users in firebase with @gmail.com accounts

两盒软妹~` 提交于 2021-02-07 03:24:34
问题 I have a firebase project. The next sign-in methods auth are enabled: Google Facebook Apple Anonymous A mobile app interacts with the firebase. Each day I get some weird new users sign-ups with fake accounts with the pattern: [name][numbers]@gmail.com. They don't do anything except sign up via google oauth once. Is it possible to prevent it? Maybe I missed something with the google oauth configuration? Updated: Also, I noticed that these sign-ups started to occur when I had sent out the

Fake users in firebase with @gmail.com accounts

◇◆丶佛笑我妖孽 提交于 2021-02-07 03:23:38
问题 I have a firebase project. The next sign-in methods auth are enabled: Google Facebook Apple Anonymous A mobile app interacts with the firebase. Each day I get some weird new users sign-ups with fake accounts with the pattern: [name][numbers]@gmail.com. They don't do anything except sign up via google oauth once. Is it possible to prevent it? Maybe I missed something with the google oauth configuration? Updated: Also, I noticed that these sign-ups started to occur when I had sent out the

Combining Facebook and Google auth for Firebase Android

痞子三分冷 提交于 2021-02-06 12:52:36
问题 Background Hello, I'm new with Firebase for Android and I'm trying to implement the Facebook and Google auth/login for the first time. I followed these two tutorials for the corresponding authentication: http:// firebase.google.com/docs/auth/android/google-signin http:// firebase.google.com/docs/auth/android/facebook-login Separately, the FacebookSignInActivity and GoogleSignInActivity are working as they should. Problem The problem is that I'm trying to use the Google and Facebook auth in

Verifying ID tokens with Firebase Authentication

你说的曾经没有我的故事 提交于 2021-02-06 09:18:27
问题 We are starting the development of a web app and were thinking of using Firebase Authentication to handle our sign up flow. However, we are unsure about how the ID token verification works. It seems possible to verify a user with its token outside the Firebase realm. We are thinking of having a Node.js app on Google Kubernetes Engine – as far as I know, it does not integrate with Firebase Authentication. Firebase provides this example on how to verify ID tokens using the Firebase Admin SDK: /

Get id token on Android app and verify it on backend server (How to use id token?)

百般思念 提交于 2021-02-06 02:32:26
问题 I'm developing an Android app that consumes data from my own REST API server. I want to use Firebase authentication because it allows the user to login using Google, Facebook, Twitter... in a very simple way. But I'm not sure how to use ID tokens: Because ID tokens have expiration date, should I call getToken method on every request in the client app, so I'm sure I'm sending a valid token every time? Should I call verifyIdToken in the server each time I receive a request from the client app?

Get id token on Android app and verify it on backend server (How to use id token?)

微笑、不失礼 提交于 2021-02-06 02:26:12
问题 I'm developing an Android app that consumes data from my own REST API server. I want to use Firebase authentication because it allows the user to login using Google, Facebook, Twitter... in a very simple way. But I'm not sure how to use ID tokens: Because ID tokens have expiration date, should I call getToken method on every request in the client app, so I'm sure I'm sending a valid token every time? Should I call verifyIdToken in the server each time I receive a request from the client app?

Firebase real-time database (Get other user info based on UID) with REST

强颜欢笑 提交于 2021-02-05 11:23:27
问题 I have an app created with Firebase real-time database and I've created a few users, all with REST methods found here: https://firebase.google.com/docs/reference/rest/auth/ I can get the user info for the current user, but I would like to have a REST endpoint to fetch all the users (UID, email, displayPhoto, name, etc) or at least a user by UID. I haven't found this method in the link above. I know that there is an SDK to do that (https://firebase.google.com/docs/auth/admin/manage-users), but

Ionic 3 firebase doesn't show that email is verified

↘锁芯ラ 提交于 2021-02-05 11:09:49
问题 I've run into a problem during development of email verification with firebase. Whenever I try to verify the email address, I can't get the info that user's email address is verified. I have a code like this: constructor(private afAuth: AngularFireAuth, public navCtrl: NavController, public navParams: NavParams) { } ionViewWillEnter() { this.afAuth.auth.onAuthStateChanged(user => { if (user && user.emailVerified) { this.navCtrl.setRoot(ShoppingListPage); } }); } proceedButtonHandler() { this

Does Firebase automatically encrypt passwords?

两盒软妹~` 提交于 2021-02-05 10:37:47
问题 Does Firebase automatically encrypt plain text passwords when creating a new user using the signUp() method? Also, does it automatically hash/encrypt plain text passwords with the signIn() method: firebase.auth().createUserWithEmailAndPassword(email, password).catch(function(error) {} ... firebase.auth().signInWithEmailAndPassword(email, password).catch(function(error) {} Would password be plain text or already hashed? 回答1: You pass plain text, Firebase handles all the encryption. 来源: https:/

Android - Firebase Auth + Asp Identity Table for userlogins

前提是你 提交于 2021-02-05 10:16:17
问题 I'm developing an social media android app and using Asp web api as a backend. I want to know can I use FirebaseAuth as a login provider in Asp.Net. I'm aware that Asp.net's identity table, Aspnetuserlogins is used for 3rd party logins. And also as FirebaseUser has methods like .getDisplayName() etc... Is it possible to use Firebase as a 3rd party Login. (I'm using Firebase because it'll provide email verification feature) 来源: https://stackoverflow.com/questions/61878186/android-firebase-auth