LINEのグループメンバーのユーザーIDを取得する方法が良く分かりません。
GASで実行しています。
以下のように書いたのですが、あっているのでしょうか?
memberIdsを取得できるでしょうか?
GAS
1 CHANNEL_ACCESS_TOKEN =''; 2 3 4 5 const params = { 6 "method" : "get", 7 "headers" : { 8 'Authorization': 'Bearer' + CHANNEL_ACCESS_TOKEN 9 } 10 }; 11 const requestUrl = "https://api.line.me/v2/bot/group/" + groupId + "/members/ids"; 12 const a = UrlFetchApp.fetch(requestUrl, params); 13 const memberIds = JSON.parse(a.postData.contents).memberIds; 14
以下がlineのリファレンスです。
https://developers.line.biz/ja/reference/messaging-api/#get-group-member-user-ids
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。