2

我正在尝试获取特定 youtube 频道的订阅者数量。我提到了 Stackoverflow 上的一些链接以及外部网站,遇到了这样的链接。几乎所有链接都建议我使用 youtube gdata api 并从subscriberCount 中提取计数,但以下代码

$data   = file_get_contents("http://gdata.youtube.com/feeds/api/users/Tollywood/playlists");
$xml    = simplexml_load_string($data);

print_r($xml);

不返回这样的subscriberCount。有没有其他方法可以让订阅者计数,或者我做错了什么?

4

5 回答 5

12

YouTube API v2.0 已弃用。这是使用 3.0 的方法。不需要 OAuth。

1) 登录谷歌账户并访问https://console.developers.google.com/。您可能需要开始一个新项目。

2) 导航到APIs & auth公共 API 访问 -> 创建新密钥

3) 选择您需要的选项(我使用“浏览器应用程序”)这将为您提供 API 密钥。

4) 在 YouTube 中导航到您的频道并查看 URL。频道 ID 在这里: https: //www.youtube.com/channel/YOUR_CHANNEL_ID

5) 使用 API 密钥和频道 ID 来获取您的查询结果:https ://www.googleapis.com/youtube/v3/channels?part=statistics&id=YOUR_CHANNEL_ID&key=YOUR_API_KEY

巨大的成功!


文档实际上非常好,但是有很多。这里有几个关键链接:

频道信息文档:https ://developers.google.com/youtube/v3/sample_requests

“试试看”页面:https ://developers.google.com/youtube/v3/docs/subscriptions/list#try-it

于 2015-06-24T22:14:13.810 回答
8

尝试这个 ;)

<?php 
$data = file_get_contents('http://gdata.youtube.com/feeds/api/users/Tollywood');

$xml = new SimpleXMLElement($data);
$stats_data = (array)$xml->children('yt', true)->statistics->attributes();
$stats_data = $stats_data['@attributes'];

/********* OR **********/

$data = file_get_contents('http://gdata.youtube.com/feeds/api/users/Tollywood?alt=json');
$data = json_decode($data, true);
$stats_data = $data['entry']['yt$statistics'];

/**********************************************************/

echo 'lastWebAccess = '.$stats_data['lastWebAccess'].'<br />';
echo 'subscriberCount = '.$stats_data['subscriberCount'].'<br />';
echo 'videoWatchCount = '.$stats_data['videoWatchCount'].'<br />';
echo 'viewCount = '.$stats_data['viewCount'].'<br />';
echo 'totalUploadViews = '.$stats_data['totalUploadViews'].'<br />';
?>
于 2012-12-14T03:07:06.977 回答
6

我可以为我的页面使用正则表达式,但不确定它是否适合您。检查以下代码:

<?php 
$channel = 'http://youtube.com/user/YOURUSERNAME/';
$t = file_get_contents($channel);
$pattern = '/yt-uix-tooltip" title="(.*)" tabindex/';
preg_match($pattern, $t, $matches, PREG_OFFSET_CAPTURE);
echo $matches[1][0];
于 2015-07-27T13:21:47.743 回答
3
<?php

//this code was written by Abdu ElRhoul
//If you have any questions please contact me at info@oklahomies.com
//My website is http://Oklahomies.com



set_time_limit(0);

function retrieveContent($url){
$file = fopen($url,"rb");
if (!$file)
    return "";
while (feof ($file)===false) {
    $line = fgets ($file, 1024);
    $salida .= $line;
}
fclose($file);
return $salida;
}

{
$content = retrieveContent("https://www.youtube.com/user/rhoula/about");         //replace rhoula with the channel name
$start = strpos($content,'<span class="about-stat"><b>');
$end = strpos($content,'</b>',$start+1);
$output = substr($content,$start,$end-$start);

echo "Number of Subscribers = $output";
}
?>
于 2015-08-27T03:27:30.737 回答
1
<?php 
echo get_subscriber("UCOshmVNmGce3iwozz55hpww");

function get_subscriber($channel,$use = "user") {
    (int) $subs = 0;
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,            "https://www.youtube.com/".$use."/".$channel."/about?disable_polymer=1");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
    curl_setopt($ch, CURLOPT_POST,           0 ); 
    curl_setopt($ch, CURLOPT_REFERER, 'https://www.youtube.com/');
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0');
    $result = curl_exec($ch);
    $R = curl_getinfo($ch);
    if($R["http_code"] == 200) {
        $pattern = '/yt-uix-tooltip" title="(.*)" tabindex/';
        preg_match($pattern, $result, $matches, PREG_OFFSET_CAPTURE);
        $subs = intval(str_replace(',','',$matches[1][0]));
    }
    if($subs == 0 && $use == "user") return get_subscriber($channel,"channel");
    return $subs;
}
于 2018-01-28T04:33:32.253 回答