How to access endpoint from express router in Cloud Functions Shell
问题 (Note: I'm using javascript, not typescript in my Functions) My Firebase Project has a single 'oauth' function, which has a series of endpoints created through express app/routers. I don't understand how to run the functions at these endpoints from the Cloud Functions Shell to debug them locally. Here is my index.js const twitter = require("./oauth/twitter"); const app = express(); app.use("/signin/twitter", twitter.router); exports.oauth = functions.https.onRequest(app); My actual endpoints