質問編集履歴

2

引数を正しいものに修正

2019/04/01 06:06

投稿

wwmakoto
wwmakoto

スコア10

test CHANGED
File without changes
test CHANGED
@@ -72,11 +72,11 @@
72
72
 
73
73
      methods: {
74
74
 
75
-         TwilioSync: function() { axios.get("/token/taskrouter/"+this.sid).then((res) => { this.EventTwilioSync(res.data); }); },
75
+         TwilioSync: function() { axios.get("/api/token/generate/twiliosync/"+this.sid).then((res) => { this.EventTwilioSync(res.data); }); },
76
-
76
+
77
-         TaskRouter: function() { axios.get("/token/taskrouter/"+this.sid).then((res) => { this.EventTaskRouter(res.data); }); },
77
+         TaskRouter: function() { axios.get("/api/token/generate/taskrouter/"+this.sid).then((res) => { this.EventTaskRouter(res.data); }); },
78
-
78
+
79
-         TwilioClient: function() { axios.get("/token/taskrouter/"+this.sid).then((res) => { this.EventTwilioDevice(res.data); }); },
79
+         TwilioClient: function() { axios.get("/api/token/generate/voip/"+this.sid).then((res) => { this.EventTwilioDevice(res.data); }); },
80
80
 
81
81
          EventTwilioSync: function(data)
82
82
 

1

プログラム部分を<code>に変更

2019/04/01 06:06

投稿

wwmakoto
wwmakoto

スコア10

test CHANGED
File without changes
test CHANGED
@@ -40,6 +40,8 @@
40
40
 
41
41
  =============
42
42
 
43
+ ```JavaScript
44
+
43
45
  var VmInstance;
44
46
 
45
47
  export default {
@@ -202,6 +204,8 @@
202
204
 
203
205
  }
204
206
 
207
+ ```
208
+
205
209
  =============
206
210
 
207
211