Tag: HTTPS requests

Cloud Functions in Firebase: Overview & Implementation
Cloud Functions in Firebase enables you to run backend code in response to events triggered by Firebase services or HTTP requests without the need to manage servers. Advantages of Cloud Functions in Firebase: This code uses firebase-functions and firebase-admin to generate a Firebase Cloud Function. It uses admin.initializeApp() to initialise the Firebase Admin SDK, which…
Part 3: Firebase Cloud Functions for Email Verification
In the previous parts of our blog series, we established the user interface and set up the SMTP mailer to send verification emails in our Flutter application. Now, in Part 3, we will focus on setting up Firebase Cloud Functions for the email verification process when users click the link in their emails. This is…