admin管理员组文章数量:1422461
I'm not very experienced with Node.js but learning quick all do quite good with javaScript. I'm using Cloud Functions to create an API for a project and trying to use a custom domain to reach this API. On my Firebase Hosting, I have connected a subdomain "api.mydomain".
I have a function called "api" on my functions index.js using express:
let express = require('express');
let app = express();
app.post('/endpoint/:userId', (req, res) => {
... EXECUTE CODE
res.json(json);
});
exports.api = functions.https.onRequest(app);
In my firebase.json I have a rewrite as so:
"rewrites": [
{
"source": "/api/**",
"function": "api"
}
So in theory if I make a POST request to /api/endpoint/userID should execute the function but instead I get:
Cannot POST /api/endpoint/userID/
If I use the default firebase URL to access the function like it works fine.
Do you have any Idea how to properly configure the custom domain to work with my function?
Thanks a lot for any help!
I'm not very experienced with Node.js but learning quick all do quite good with javaScript. I'm using Cloud Functions to create an API for a project and trying to use a custom domain to reach this API. On my Firebase Hosting, I have connected a subdomain "api.mydomain.".
I have a function called "api" on my functions index.js using express:
let express = require('express');
let app = express();
app.post('/endpoint/:userId', (req, res) => {
... EXECUTE CODE
res.json(json);
});
exports.api = functions.https.onRequest(app);
In my firebase.json I have a rewrite as so:
"rewrites": [
{
"source": "/api/**",
"function": "api"
}
So in theory if I make a POST request to https://api.mydomain/api/endpoint/userID should execute the function but instead I get:
Cannot POST /api/endpoint/userID/
If I use the default firebase URL to access the function like https://us-central1-my-proyect.cloudfunctions/api it works fine.
Do you have any Idea how to properly configure the custom domain to work with my function?
Thanks a lot for any help!
Share Improve this question edited Dec 26, 2017 at 16:34 Doug Stevenson 319k36 gold badges456 silver badges473 bronze badges asked Dec 26, 2017 at 15:58 XazzoXazzo 851 gold badge1 silver badge6 bronze badges2 Answers
Reset to default 4When you use an Express app as the target for an HTTPS function, the name of the function gets prepended to the path of the hosting URL, just like it does when you call the function direction. There are two ways to pensate for this:
Put the prefix path in your route paths:
app.post('/api/endpoint/:userId', (req, res) => { ... })
Create a second Express app that routes everything under /api, and send that to Cloud Functions:
app.post('/endpoint/:userId', (req, res) => { ... }) const app2 = express() app2.use('/api', app) exports.api = functions.https.onRequest(app2)
Either way, when you rewrite path /api/**
to function api
, your function will get invoked.
My preferred method is to remove the prepend and continue with the normal flow.
If I want to call mysite./api/process
const PREFIX = "api"
app.use((req, res, next) => {
if (req.url.indexOf(`/${PREFIX}/`) === 0) {
req.url = req.url.substring(PREFIX.length + 1);
}
next();
});
app.post("/process", (req, res) => {...}
exports[PREFIX] = functions.https.onRequest(app);
and in firebase.json
"rewrites": [
{
"source": "/api/**",
"function": "api"
},
{
"source": "**",
"destination": "/index.html"
}
]
本文标签: javascriptHow to use a custom domain for a Cloud Function as a POST requestStack Overflow
版权声明:本文标题:javascript - How to use a custom domain for a Cloud Function as a POST request - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745370206a2655699.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论