diff --git a/.gitignore b/.gitignore index 6db3394..d2869d3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ go.mod go.sum +ytgo diff --git a/scraper/scraper.go b/scraper/scraper.go index 3673ddc..71e5730 100644 --- a/scraper/scraper.go +++ b/scraper/scraper.go @@ -122,7 +122,7 @@ func FetchVideos(query string) ([]Video, error) { // Make the search request call := youtubeService.Search.List([]string{"snippet"}). Q(query). - MaxResults(25). + MaxResults(50). Type("video"). VideoDuration("any")