I have two Angular applications that are connecting to the same Firebase/Firestore instance:
I have implemented Firebase Cloud Functions with Express, but would like to conditionally manipulate the data being returned based on which applications is making the request. I have tried using req.get('origin')
to detect the origin of the request, but that always returns the URL provided by the Firebase Cloud (cloudfunctions.net/).
Can I access this information another way?