In a Google Apps Script, I'm trying to use a Cloud Function URL as described here
But I'm getting an error:
Executions on HTTP endpoints are disabled. Set enableHttpEndpoints to true in manifest file.
I've searched all over Google's documentation, stack overflow, and google and can't figure out where to put that enableHttpEndpoints: true
. Anywhere I've tried results in an invalid manifest error.
{
"timeZone": "America/New_York",
"exceptionLogging": "STACKDRIVER",
"addOns": {
"common": {
"name": "name",
"logoUrl": "logo",
"homepageTrigger": {
"runFunction": "firebase functions URL here"
},
}
}