diff --git a/functions/http/index.js b/functions/http/index.js index 757c4edb57..317994e015 100644 --- a/functions/http/index.js +++ b/functions/http/index.js @@ -61,7 +61,7 @@ exports.helloContent = (req, res) => { name = req.body; break; - // 'name=John' + // 'name=John' in the body of a POST request (not the URL) case 'application/x-www-form-urlencoded': name = req.body.name; break;