回答編集履歴
1
PUSHERのリテラル値を編集
test
CHANGED
@@ -402,6 +402,12 @@
|
|
402
402
|
|
403
403
|
const clientKey = 'MY_NCMB_CLIENT_KEY';
|
404
404
|
|
405
|
+
const pusher_key = 'MY_PUSHER_KEY';
|
406
|
+
|
407
|
+
const pusher_secret = 'MY_PUSHER_SECRET';
|
408
|
+
|
409
|
+
const pusher_appid = 'MY_PUSHER_APP_ID';
|
410
|
+
|
405
411
|
saveDataStore(
|
406
412
|
|
407
413
|
applicationKey,
|
@@ -414,11 +420,11 @@
|
|
414
420
|
|
415
421
|
return sendPusher(
|
416
422
|
|
417
|
-
|
423
|
+
pusher_key ,
|
418
|
-
|
419
|
-
|
424
|
+
|
420
|
-
|
421
|
-
|
425
|
+
pusher_secret ,
|
426
|
+
|
427
|
+
pusher_appid ,
|
422
428
|
|
423
429
|
req.body
|
424
430
|
|