gpt4 book ai didi

api - Youtube下一个与Json的分页

转载 作者:行者123 更新时间:2023-12-03 05:39:24 25 4
gpt4 key购买 nike

我从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号,但链接不起作用。

最佳答案

我得到了,只需在Json URL中发送pageToken值,然后进行分页即可。

关于api - Youtube下一个与Json的分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30343163/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com