Youtube下一页上一页与Json的分页

时间:2015-05-20 07:36:10

标签: api youtube pagination

我从json结果中获取nextPageToken但仍然无效。不存在问题,任何人都可以查看这个并纠正并帮助我解决这个问题。

`
    $ jsonURL = file_get_contents(“https://www.googleapis.com/youtube/v3/search?order=date&part=snippet&contentDetail&channelId= {$ channelID}& type = video& maxResults = 2& key = {myAPiKey}”);     $ result = json_decode($ jsonURL,true);     foreach($ result ['items'] as $ searchResult){

$nPt = $result['nextPageToken']; 

$Tmburl = $searchResult['snippet']['thumbnails']['high']['url'];
$views = $searchResult['statistics']['viewCount'];
$date = $searchResult['snippet']['publishedAt'];

echo '<h3>'.$searchResult['snippet']['title'].'</h3>';
echo '<img src="'.$Tmburl.'"/>';
echo '<p>'.$searchResult['snippet']['description'].'</p>';
}

// Pagination

echo '<h1><a href="?id='.$channelID.'&pageToken='.$result['nextPageToken'].'">next</a></h1>';

`

下一个 - 以前的分页不起作用。即使我得到nextPageToken号码但链接不起作用。

1 个答案:

答案 0 :(得分:0)

我得到了,只需在Json URL和分页工作中发送pageToken值。