如何为YouTube API实现NextPagetoken



我尝试了以下代码:

$api_url = 'https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&maxResults=50&pageToken=CAoQAA&playlistId='.$playlist_id. '&key=' . 
$api_key;

我感谢您提供解决方案。

您将nextpagetoken放在pagetkoken参数中。您可以检查此信息,以获取实际代码示例:

   // checking if nextPageToken exist than return our function and 
      // insert $next_page_token with value inside nextPageToken
    if(isset($searchResponse['nextPageToken'])){
          // return to our function and loop again
        return youtube_search($query, $max_results, $searchResponse['nextPageToken']);
    }

另外,请检查此帖子以获取其他参考。

相关内容

  • 没有找到相关文章

最新更新