Category: Java
-
How to check if YouTube video is a SHORT
YouTube and Google do not allow to check if a YouTube video is a Short or a long form video in a simple way. Even the YouTube Data V3 does not provide this information. Yes, you can get a video length (ISO8601 formatted duration) and assume that videos shorter then 60 seconds are Shorts. But…
-
How to create and register Spring Boot custom request filter
Creating a custom request filter in Spring Boot is a relatively simple process that can be accomplished by following a few basic steps. Create a new class that extends the OncePerRequestFilter class. This ensures that the filter will be executed only once per incoming request. In your filter class, override the doFilter method. This method…