LINEユーザ情報取得
LINEmessagingAPI
https://developers.line.biz/ja/reference/messaging-api/#get-profile
user.gs
const ACCESS_TOKEN = <LINEのアクセストークン>;
/*
* LINEユーザ情報取得
*/
function getUserInfo(userId) {
// アクセス先
var get_url = "https://api.line.me/v2/bot/profile/"+userId;
// GETリクエスト
var response = UrlFetchApp.fetch(get_url, {
'headers': {
'Content-Type': 'application/json; charset=UTF-8',
'Authorization': 'Bearer ' + ACCESS_TOKEN,
}
});
return response;
}