在firebase云功能中获取post参数

时间:2018-02-11 19:42:20

标签: javascript firebase google-cloud-functions

如何在firebase云功能中访问post参数。我使用postman来测试函数,它返回undefined,我将返回传递的值。这是我的代码(类型脚本)

exports.testParam = functions.https.onRequest((request,response)=>{
    const x = request.params['username'];
    response.send(`data passed is ${x}`);
});

我发送了一个名为username的表单url编码参数。如何在firebase云功能中访问post参数

0 个答案:

没有答案