I'm using CodeIgniter + Zend libraries. I want to let users upload videos to my site, which I will then upload to my YouTube channel. This is my first exposure to the YouTube API. Can someone point me in the right direction?

Am I right to be looking at this: http://code.google.com/apis/youtube/2.0/developers_guide_protocol.html#Direct_uploading? Does anyone have a snippet of code that shows how uploading is done via PHP?

link|improve this question

feedback

1 Answer

The docs have this, as well as other methods, covered for Zend Gdata: Uploading Videos

link|improve this answer
Martti - it seems like the demo explains how to upload to the user's YouTube account. I want the user to upload to my YouTube account. – StackOverflowNewbie Feb 16 at 8:00
1  
You can authenticate only one account by embedding your login details to source using ClientLogin. – Martti Laine Feb 16 at 11:26
@MarttiLaine, I think you are right. I thought something like this should be possible. – Mischa Feb 16 at 11:53
Martti - ClientLogin should not be used for web apps, right? – StackOverflowNewbie Feb 16 at 14:43
1  
@StackOverflowNewbie I don't see a reason not to: it is implemented in Zend Gdata and it's the only way to authenticate a single account. The docs recommend not to because these days it's recommended to handle authentication by something else than straight-on username/password, but in your case this is the only chance. – Martti Laine Feb 16 at 16:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.