2

我一直在搜索如何检索 Youtube 视频信息,并且我得到了一些不错的结果,但仍然有一个问题:对于某些视频,我的代码无法检索评级。

我的代码:

$feedURL = 'http://gdata.youtube.com/feeds/api/videos/' . $link;
$entry = simplexml_load_file($feedURL);
$video = parseVideoEntry($entry);

$rating = $video->rating;
$ratingf = (float)$rating*20;

function parseVideoEntry($entry) {      
$obj= new stdClass;

 $gd = $entry->children('http://schemas.google.com/g/2005'); 
 if ($gd->rating) { 
   $attrs = $gd->rating->attributes();
   $obj->rating = $attrs['average']; 
 } else {
   $obj->rating = 0;         
 }
 return $obj;
}

所以,我在某些视频中得到了这个 0,但我找不到原因。一个视频与另一个不同吗?

4

1 回答 1

0

你会喜欢这个工具:谷歌开发者 youtube api

它提供了您可以自己查询 API 的 JSON,例如:

{
 "kind": "youtube#videoListResponse",
 "etag": "\"g-RLCMLrfPIk8n3AxYYPPliWWoo/lmFpi-LTJ4YMpq66PF5yr558nV8\"",
 "pageInfo": {
  "totalResults": 1,
  "resultsPerPage": 1
 },
 "items": [
  {

   "id": "9bZkp7q19f0",
   "kind": "youtube#video",
   "etag": "\"g-RLCMLrfPIk8n3AxYYPPliWWoo/g7hwtchXAeaF-Q1DpUEFJXvRfbY\"",
   "statistics": {
    "viewCount": "1621240530",
    "likeCount": "7577258",
    "dislikeCount": "787002",
    "favoriteCount": "0",
    "commentCount": "5969060"
   }
  }
 ]
}

你可以在里面看到like和数数。因此,当您不确定响应时,请检查该工具并查看它是否具有您需要的一切。dislikestatistics

于 2013-05-26T18:46:40.333 回答