YoutubeのハンドルIdからチャンネルIDを取得する用のコピペコード【GoogleAppsScript】 2024年6月22日 最終更新日時 : 2024年6月22日 simple //ハンドルからChannelidを取得 let response = YouTube.Channels.list(part="id", { forHandle:"@〇〇〇"}); console.log(response.items[0].id); これでハンドル名からチャンネルIdを取得できる。