Skip to content

Instantly share code, notes, and snippets.

@atbe
Last active July 1, 2017 18:21
Show Gist options
  • Save atbe/0405f220bd0a6133d4615654212558f6 to your computer and use it in GitHub Desktop.
Save atbe/0405f220bd0a6133d4615654212558f6 to your computer and use it in GitHub Desktop.
Firebase Functions Simple getUser Route
import * as functions from "firebase-functions";
admin.initializeApp(functions.config().firebase);
// ...
exports.getUser = functions.https.onRequest((req, res) => {
// ...
// note, req.query.uid might be null! If we use a router, the function will never get matched unless the route is matched correctly
const uid = req.query.uid;
// ...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment