Reputation: 40633
I'm playing with YouTube API. Using the following URL: https://gdata.youtube.com/feeds/api/users/RayWilliamJohnson/uploads, how do I get the video URLs? The URLs all seem to have the schema https://. Shouldn't there be an http:// only?
Upvotes: 4
Views: 3455
Reputation: 4132
Find <entry>
tag, which gives each video's information. <id>
tag inside <entry>
should be what you need.
For example, <entry><id>http://gdata.youtube.com/feeds/api/videos/u5yEXai8MoQ</id>
Upvotes: 2