質問編集履歴
1
参考コードに間違いが合ったので修正。
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,9 +50,11 @@
|
|
50
50
|
|
51
51
|
exports.sampleAPI = functions.https.onRequest((request, response) => {
|
52
52
|
|
53
|
+
const text = request.body.text
|
53
54
|
|
54
55
|
|
56
|
+
|
55
|
-
write
|
57
|
+
writeText(text).then(value => {
|
56
58
|
|
57
59
|
console.log("==== Operation DONE ====")
|
58
60
|
|