YouTube API: getting video, where is the video url?

I play with the YouTube API. Using the following URL: https://gdata.youtube.com/feeds/api/users/RayWilliamJohnson/uploads , how do I get the video URLs? It seems that all URLs have a https: // scheme. Should there be http: // only?

+4
source share
1 answer

Find the <entry> tag that gives each video information. The <id> inside the <entry> should be what you need.

For example, <entry><id>http://gdata.youtube.com/feeds/api/videos/u5yEXai8MoQ</id>

+2
source

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


All Articles