Created
May 15, 2020 16:41
-
-
Save katowulf/d50c26dbbb69fbfe3869cf0b4b41fda1 to your computer and use it in GitHub Desktop.
Revisions
-
Kato Richardson created this gist
May 15, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ function callMeAnywhere(uid, foo) { if( !uid ) throw new Error("Must authenticate"); return foo + 'bar'; } functions.https.onCall((data, context) => { const data = callMeAnywhere(context.auth.uid, data.foo); return {data: data}; }) // Use this with https://github.com/firebase/functions-samples/tree/master/authorized-https-endpoint app.get('/foo', (req, res) => { const data = callMeAnywhere(req.user.id, req.params.foo); res.send(data); }); functions.https.onRequest(app);