I have a channel on youtube and I want every time I post new video, automatically update in the iframe of my blog.
I have a channel on youtube and I want every time I post new video, automatically update in the iframe of my blog.
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!