質問編集履歴
1
不足箇所の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -5,6 +5,8 @@
|
|
5
5
|
|
6
6
|
|
7
7
|
以下のように書いたのですが、あっているのでしょうか?
|
8
|
+
|
9
|
+
memberIdsを取得できるでしょうか?
|
8
10
|
|
9
11
|
```GAS
|
10
12
|
|
@@ -32,6 +34,10 @@
|
|
32
34
|
|
33
35
|
const a = UrlFetchApp.fetch(requestUrl, params);
|
34
36
|
|
37
|
+
const memberIds = JSON.parse(a.postData.contents).memberIds;
|
38
|
+
|
39
|
+
|
40
|
+
|
35
41
|
```
|
36
42
|
|
37
43
|
以下がlineのリファレンスです。
|