У меня есть следующее:
export const helloWorld = functions.https.onRequest((request, response) => {
response.send(request.body);
});
Я запустил его локально и запустил helloWorld("Hey")
, и это был вывод:
firebase > helloWorld('HEY')
Sent request to function.
firebase > info: User function triggered, starting execution
info: Execution took 1 ms, user function completed successfully
RESPONSE RECEIVED FROM FUNCTION: 200, "{}"
Почему он выводит только {}
когда я четко отправил ей строку?