Youtube API v3 video search, title and URL retrieval

How can you search for youtube videos and get id / url and title from it? To add them to the BaseAdapter class in an Android application.

In the second version of the API, this was possible: https://developers.google.com/youtube/2.0/developers_guide_java#Retrieving_and_searching_for_videos

+4
source share
1 answer

You need to do a search-> list and get the identifiers, and then connect these identifiers to videos-> list to get the information.

I suggest you try the API explorer to understand these features. They are also embedded in documents.

The YouTube Direct Lite project is good to get you started. Definitely read README before starting.

+14
source

Source: https://habr.com/ru/post/1492301/


All Articles