First draft of new YouTube API

So not long after I had released my YouTubeCFC wrapper, Google dared to update the API to match the rest of their services. I didn't bother updating my code as I wanted to wait till upload support was done. YouTube now officially allows you to upload (and even update) videos.

I've begun work on rewriting my CFC. It supports basic reading (get top videos for example), but no searching yet. But I did get upload working. Here is an example of how easy it is:

<cfset yt = createObject("component", "youtube")>
<cfset yt.setDeveloperKey("xxx")>

<cfset yt.login("cfjedimaster", "likeidsay")>
<cfset r = yt.upload(expandPath('./movie2.mov'),'Test Upload','Playing with youtube','Music','testing,fun')>
<cfoutput>id=#r#</cfoutput>

I've included the CFC for folks to play with, and once I get a bit more of the API done I'll replace the CFC at RIAForge.

You will need a valid login and a developer key. Also there seems to be a quota limit. I ran into after uploading about 10 videos.

Comments

They DARED you? I think you should dare THEM to add CF support to Google App Engine.


(PS. Once again, nice work)
# Posted By Jeff | 4/15/08 11:22 PM
CF support for the app engine, that would be something. :( If I could live off dreams...
# Posted By Raul Riera | 4/16/08 2:58 AM
Should I subscribe to Ray's channel?

Hmmmm....

Alright... Woo Hoo! First Subscriber! :-)
# Posted By Sam | 4/17/08 1:03 PM
This page talks about the quotas with the API. There is a 1000 total limit for an account and in that case they recommend you add the video to the user's account. They also recommend passing the users IP in the restriction parameter.

http://code.google.com/support/bin/topic.py?topic=...
# Posted By Jason | 4/17/08 10:47 PM