I'm trying to use YouTube's JavaScript API to embed a playlist to my Facebook app.
I tried using the standard code as shown by Google here to embed a simple video and it worked.
The code is:
function loadPlayer() {
// The video to load
var videoID = "[My Video ID]";
// Lets Flash from another domain call JavaScript
var params = { allowScriptAccess: "always" };
// The element id of the Flash embed
var atts = { id: "ytPlayer" };
// All of the magic handled by SWFObject (http://code.google.com/p/swfobject/)
swfobject.embedSWF("http://www.youtube.com/v/" + videoID +
"?fs=1&version=3&enablejsapi=1&playerapiid=player1",
"videoDiv", "420", "315", "9", null, null, params, atts);
}
But how do I use the YouTube API to embed a Playlist?
I'm aware of the playlist parameter on the embedSWF URL parameter, but what it does is append videos as to make a playlist on the fly.
I already have a playlist on my YouTube account, now I want to embed it using the API.
How can this be done?
Thanks!