質問編集履歴

1

参考コードに間違いが合ったので修正。

2019/10/03 02:30

投稿

_CHO
_CHO

スコア16

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
- writeSpots(title, guideText, location).then(value => {
57
+ writeText(text).then(value => {
56
58
 
57
59
  console.log("==== Operation DONE ====")
58
60