Reputation: 3256
I want to upload video to Youtube from my ASP.NET application. It should return video ID or embed code after uploaded video.
Upvotes: 0
Views: 4157
Reputation: 8068
Ah, google integration. Be ye warned: here lies madness.
An extremely high overview: You will either
After authorization you may either:
Youtube then passes you back data that contains the id as well as other meta video data.
At this point you would need to perform additional http posts to their api in order to retrieve the embed code.
Youtube's api upload documentation lists between 6-13 steps depending on what choices you make in your app.
Hope this overview helps!
Here is another question on SO about this same thing. It includes code samples:
How can I upload a video to YouYube using the Youtube API in C#?
Upvotes: 2