u

유튜브 api 사용하기

· 2015-05-06 (수) 23:19:56 · 7536
스크린샷 2015-05-06 오후 11.18.28.png

데모

 

<?php

//ver1.0 150423 @_untitle_d

 

 

$yt_api = ''; //유튜브 API KEY, https://console.developers.google.com/project

 

 

function get_video_id($url){}

 

 

function youtube_info($id, $part='snippet')

{

global $yt_api;

$curl = curl_init();

curl_setopt($curl, CURLOPT_URL, "https://www.googleapis.com/youtube/v3/videos?id={$id}&key={$yt_api}&part={$part}");

curl_setopt($curl, CURLOPT_POST, 0);

curl_setopt($curl, CURLOPT_TIMEOUT, 10);

curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

$return = curl_exec($curl);

curl_close($curl);

return json_decode($return, true);

}

 

 

 

$tmp_yt = 'http://www.youtube.com/watch?v=yEJ2-VofNCw'; //유튜브 동영상

$return = youtube_info(get_video_id($tmp_yt)); //유튜브 정보

 

echo "동영상 : ".$tmp_yt."<br>";

echo "제목 : ".$return['items'][0]['snippet']['title']."<br>"; //title

echo "채널명 : ".$return['items'][0]['snippet']['channelTitle']."<br>"; //channelTitle

echo "썸네일 : <img src='".$return['items'][0]['snippet']['thumbnails']['default']['url']."'><br>"; //thumb default

print_r($return);

 

 

?>

 

 

 

 

관련링크

http://untitled.untitle311apyxry1w48.com/lkbmgfh

 

 

 

 

참고

http://youtu.be/rV4sAX_WVvA 

첨부파일

youtube.php (1.6 KB) 75회 2015-05-06 23:20
|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
MySQL 15-09-21 조회 3,451
15-08-06 조회 3,800
PHP 15-08-03 조회 3,746
PHP 15-07-12 조회 4,956
MySQL 15-07-02 조회 3,966
웹서버 15-06-16 조회 9,014
JavaScript 15-06-09 조회 4,978
jQuery 15-05-29 조회 5,847
기타 15-05-27 조회 8,185
기타 15-05-23 조회 4,368
기타 15-05-19 조회 5,268
기타 15-05-18 조회 1.4만
PHP 15-05-07 조회 9,372
웹서버 15-05-07 조회 4,700
JavaScript 15-05-06 조회 8,297
PHP 15-05-06 조회 9,312
PHP 15-05-06 조회 7,537
기타 15-04-13 조회 4,190
MySQL 11-01-14 조회 5,425
PHP 15-04-04 조회 5,265
PHP 15-04-04 조회 3,736
OS 15-04-03 조회 4,919
PHP 15-04-01 조회 7,230
JavaScript 15-03-28 조회 3,930
기타 15-03-20 조회 5,317
웹서버 15-03-02 조회 1만
PHP 15-02-10 조회 6,916
MySQL 15-02-09 조회 4,979
jQuery 15-02-02 조회 4,534
PHP 15-01-31 조회 9,112