1

我的要求是将用户在运行时选择的单个文件上传到 Google 驱动器。我从用户那里获得电子邮件 ID 和密码。怎么做?如果我从用户那里得到任何其他要求?有什么可行的解决方案吗?

4

2 回答 2

2

您可以使用 Google Drive SDK/API,如果您通读文档,这是相当简单的东西,

https://developers.google.com/drive/

https://developers.google.com/drive/manage-uploads

有一个 .NET API 可供下载,虽然它是测试版,但我使用它没有问题。

https://developers.google.com/drive/downloads

于 2013-05-17T13:31:16.673 回答
0

DocumentsService myService = new DocumentsService("应用程序名称"); myService.setUserCredentials("email", "password"); DocumentEntry newEntrys = myService.UploadDocument("pdf 路径", @"上传文件名");

但我有例外请求执行失败:https ://docs.google.com/feeds/default/private/full?convert=false

于 2014-01-04T19:23:44.337 回答