Firebase Triggered Cloud Function is not aware of user
I have integrated a payment system to my Firebase app and their system sends a POST request to my backend. I handle that request as below: app.post("/subscription", (req, res) => { const {data, signature} = req.body; const decodedJson = JSON.parse(Buffer.from(data,…