Youtube API v3 for ASP.NET Workflow

I watch the documentation for hours. Maybe someone here can help me.

I plan to add functionality to our project that will allow users to upload their videos to YouTube directly, without having to log into Youtube.com and upload there. I tried to create a sample project using codes on

https://developers.google.com/youtube/v3/code_samples/dotnet

But failed. Then the search on Google began for an example (working), but all the search results for older versions of api or copies of codes in the link below.

Nuget has a package: Google.GData.YouTube

So, I created a project in which this package is installed. What to do next? (.net sample on youtube api documentation not working with this package - is this a nuget package for v2 or smth?)

+4
source share
2 answers

Try using YouTube Direct Lite, you can read about it at the following link: https://code.google.com/p/youtube-direct-lite/

You can also see the following video: https://www.youtube.com/watch?v=_ZE89VsBq3o

0
source

The NuGet package Google.GData.YouTube uses this API http://gdata.youtube.com/ , which is referred to as v2.0.

There is also the NuGet Google.Apis.YouTube.v3 Client Library , which uses the YT v3 API.

The example you are referring to is using this client library.

0
source

All Articles