I am using Cloud Functions for Firebase and writing an HTTP trigger. I want to change the function URL from:
https://us-central1-[projectID].cloudfunctions.net/helloWorld
to:
https://us-central1-[projectID].cloudfunctions.net/api/helloWorld
Is that possible?
You can't use a plain old HTTP function if you want to specify the path of the URL. You'll have to instead create an Express app and hand that over to Cloud Functions for service. The code will look something like this:
Note that
/api
comes from the name of the export and/helloWorld
comes from the path inapp.get
.You will also have to install the express module: