如何在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参数