문제

I need to develop web application which use youtube api v3 for searching videolist by channel name and author name.

for simple testing go to youtube api client site then download sample files of .net.

I downloaded youtube/yt-samples-dotnet from here. Here i got 4 class files. no sln.

Then what to do? i mean just open it and run!!!? or something else needed from my side coding?

I already create account and Generate API key.

UPDATE

Now i create new project 3 tier with BAL DAL PAL In BAL : i added all 4 .cs files

then add reference which is download from here.

I need :

 using DotNetOpenAuth.OAuth2;
 using Google.Apis.Youtube.v3;
 using Google.Apis.Youtube.v3.Data;

then what to do?

도움이 되었습니까?

해결책

As explained in the comment at the top of those files, there are dependencies on the Google APIs Client Library for .NET. You can follow the user guide for getting started, and I'd recommend using the NuGet approach to pulling in the dependent libraries.

다른 팁

Here: https://developers.google.com/api-client-library/dotnet/apis/youtube/v3

Then you can download the library opening the nuget webpage and viewing the package id and the version.

https://www.nuget.org/packages?q=Google.Apis.youtube&prerelease=true&sortOrder=relevance

and then build this url:

https://www.nuget.org/api/v2/package/{packageID}/{packageVersion}
=>
https://www.nuget.org/packages/Google.Apis.YouTube.v3/1.7.0.94-beta
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top