Martin
Martin

Reputation: 4330

Find firebase user by a part of the email address?

I have a set of users with email addresses like the following (along with other users):

Is there a way to find all users with an email address ending on @example.com or starting with user?

Upvotes: 3

Views: 771

Answers (1)

Peter Haddad
Peter Haddad

Reputation: 80914

There is no api in firebase authentication, that will enable you to do that. If you want to find the user per ending of email address @example.com, then you have to connect the firebase authentication to firebase database. Then when you query the data, you can split the string retrieved.

Upvotes: 1

Related Questions