YouTube API显示每个请求进行102个查询

时间:2018-08-22 17:49:35

标签: youtube-api youtube-data-api

所以这有点奇怪。使用我们的YouTube API密钥从我的网站发送的每1个请求中,开发者控制台都会显示102个实际查询。这是查询格式(使用Python)-

search_q = '<query-string-here>'
service = build('youtube', 'v3', developerKey='<api-key>')
results = service.search().list(
     part='snippet', 
     channelId='<specific-channel-id-to-search-through>',
     type='video',
     q=search_q,
 ).execute()

我的日志仅显示使用此请求发送的一个请求,但是我的配额页面上的查询计数增加了102。

我在做错什么吗?还是这是Google的错误?

1 个答案:

答案 0 :(得分:1)

您可以使用Quota Calculator来估算您的请求正在使用的配额费用。果然搜索API请求配额在100个范围内:

<code>enter image description here</code>