本文介绍了YouTube API v3 totalResults 字段不应该返回 1 000 000的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

1) 我正在使用 YouTube API v3,当我发送此请求时:

1) I'm using YouTube API v3 and when i send this request:

https://www.googleapis.com/youtube/v3/search?part=id&type=video&key=MY_KEY&maxResults=50&publishedAfter=2013-09-02T17:00:01Z

它让我返回totalResults":1000000

It's returing me "totalResults": 1000000

我不认为从 17:00:00 开始添加了 1 000 000 部电影.此外,当我使用 pageToken 跳转到第 2 页时:

I don't think that from 17:00:00 was added 1 000 000 movies.Also when i jump to page #2 using pageToken i'm getting:

"totalResults": 46269

"totalResults": 46269

怎么回事?

2) 假设我的搜索请求返回了 1 000 000 个 totalResults.使用 pageToken 我可以走多远?

2) Let's say that my search request has returned 1 000 000 totalResults.How far i can travel using pageToken?

推荐答案

"totalResults" 是一个估计值,它的值可以在下一页调用时更改.版本 2 的搜索限制是 1000.我想这个限制和版本 3 是一样的.

"totalResults" is an estimation and its value can change on the next page call. The limit for searches with version 2 is 1000. I suppose the limit will be the same with version 3.

这篇关于YouTube API v3 totalResults 字段不应该返回 1 000 000的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 17:34