Automatically update video posted on youtube [closed]

-1

I have a channel on youtube and I want every time I post new video, automatically update in the iframe of my blog.

    
asked by anonymous 13.02.2014 / 18:55

1 answer

3

Use the listType=user_uploads parameter iframe to show all recent posts on your channel.

Here is an example I used on my site ( link )

<iframe 
width="560" height="315" 
src="//www.youtube.com/embed/?listType=user_uploads&list=metacodigo&showinfo=1&theme=light" 
frameborder="0" allowfullscreen>
</iframe>

Just change the "metacode" value of the list parameter by the name of your channel.

Good luck!

    
13.02.2014 / 19:35