【发布时间】:2015-11-04 13:05:45
【问题描述】:
我在使用 VB.net Express 2012 连接到我的 Google 云端硬盘时遇到问题。 支持吗?
Imports Google.Apis.Auth.OAuth2
Imports Google.Apis.Drive.v2
Imports Google.Apis.Drive.v2.Data
Imports Google.Apis.Services
Imports Google.Apis.Util.Store
Imports System.Collections.Generic
Imports System.IO
Imports System.Linq
Imports System.Text
Imports System.Threading
Imports System.Threading.Tasks
Namespace DriveQuickstart
Class Program
Shared Scopes As String() = {DriveService.Scope.DriveReadonly}
Shared ApplicationName As String = "Drive API .NET Quickstart"
Private Shared Sub Main(args As String())
Dim credential As UserCredential
Using stream = New FileStream("client_secret.json", FileMode.Open, FileAccess.Read)
Dim credPath As String = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal)
credPath = Path.Combine(credPath, ".credentials/drive-dotnet-quickstart")
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(GoogleClientSecrets.Load(stream).Secrets, Scopes, "user", CancellationToken.None, New FileDataStore(credPath, True)).Result
Console.WriteLine(Convert.ToString("Credential file saved to: ") & credPath)
End Using
' Create Drive API service.
Dim service = New DriveService(New BaseClientService.Initializer() With { _
Key .HttpClientInitializer = credential, _
Key .ApplicationName = ApplicationName _
})
' Define parameters of request.
Dim listRequest As FilesResource.ListRequest = service.Files.List()
listRequest.MaxResults = 10
' List files.
Dim files As IList(Of Google.Apis.Drive.v2.Data.File) = listRequest.Execute().Items
Console.WriteLine("Files:")
If files IsNot Nothing AndAlso files.Count > 0 Then
For Each file As var In files
Console.WriteLine("{0} ({1})", file.Title, file.Id)
Next
Else
Console.WriteLine("No files found.")
End If
Console.Read()
End Sub
End Class
End Namespace
我在控制台中运行 Nuget 失败了,所以我不得不手动将 DLL 复制到项目中并将它们添加为引用,这似乎可以工作,因为 Imports google.* 不再给出错误,但我在代码。
有什么帮助吗?
更新
我认为问题可能是我使用的是 vbnet express 2012 正如https://developers.google.com/drive/web/quickstart/dotnet 所说: 先决条件
要运行此快速入门,您需要:
Visual Studio 2013 或更高版本。
有什么解决办法吗?
更新2
我不再需要此代码,因为我将使用不同的方法 如果其他人有同样的问题,请随时回答
【问题讨论】:
-
我在 VS 2010 中使用过 .net 客户端库,所以这不是真的。我知道的唯一先决条件是它需要是 .net framework 4.0 或 4.5。
-
你究竟导入了哪个 nugget 包?
-
portable-net40+sl50+win+wpa81+wp80 的所有 4 个 dll 文件(Google.Apis.Auth.dll、Google.Apis.Core.dll、Google.Apis.dll、Google.Apis .Drive.v2.dll)
-
这就是你需要导入的全部nuget.org/packages/Google.Apis.Drive.v2 如果导入失败,请确保项目设置为 .net framework 4.0 或 4.5
-
感谢您的帮助。 :)
标签: vb.net google-api google-drive-api google-api-dotnet-client