일단 기본적으로 REFRESH TOKEN으로 작업을 얻어야 한다. 이는 다른 게시물을 참고 간단한 소스를 위해 try catch 문은 사용하지 않음 //재생목록 생성 include 'google/src/Google/Client.php'; include 'google/src/Google/Service/YouTube.php'; $client = new Google_Client(); $client->setClientId($clientID); $client->setClientSecret($secret); $client->setScopes('https://www.googleapis.com/auth/youtube'); $client->refreshToken($token); $youtube = new Google_Service_YouTube($client); $playlistSnippet = new Google_Service_YouTube_PlaylistSnippet(); $playlistSni...