[OpenAPI/Javascript] Youtube API 사용방법
[채널 연동법] [플레이리스트 연동법] 활용 : YouTube Data API / V3 [채널 연동법] - Javascript로 활용 SCRIPT 변수 값 지정 //api key const apiKey = '[본인의 api key 발급받아야합니다 !!! ]'; //채널아이디 const channelId = '[가져오고싶은 유튜브 채널 아이디 !!! ]'; // Channel const channels = `https://www.googleapis.com/youtube/v3/channels?key=${apiKey}&id=${channelId}&part=snippet,contentDetails,statistics`; apiKey : 유튜브 관련 정보를 얻을려면, api key를 발급받아야 합니다. api k..
© 2018 eh2world