YouTube API - Querying by publish date

后端 未结 2 1936
伪装坚强ぢ
伪装坚强ぢ 2021-02-04 14:08

I\'m writing a webapp that uses the YouTube Code API to do specific types of searches. In this case, I\'m trying to search for all videos that match a query, and which were upl

2条回答
  •  心在旅途
    2021-02-04 14:31

    The Reference Guide for YouTube's Data API doesn't list anything that would suggest the possibility to filter on time interval in general.

    The published-min argument is only advertised in the "User activity feeds" section which is something different and probably not the thing you wanted. Or is it?

    The updated-min argument in your link is referenced in a generic gdata context. It looks like they intended to describe all the things common to all the specialized APIs, but somehow updated-min isn't available everywhere.

    When it comes to your very problem. I would suggest sorting on time (orderby=published) and do the filtering on the client side. I know this is not the optimal way, but the only one I can see with what Google gives us.

提交回复
热议问题