November 2017
Beginner to intermediate
288 pages
7h 33m
English
Fetching users is the most common feature that any platform would want to feature, so let's see how we can fetch users from their email and phone number.
We will first learn about fetching users by email:
req.post('/users/search/email', (req, res) => { let email = req.body.email; admin.auth().getUserByEmail(email) .then(users => { //[*] TODO: properly the User. }) .catch(err => { logger.error(`[*] Huston we've an ...Read now
Unlock full access