'应设置至少一个客户机密(已安装或网络)'在C#Windows窗体应用程序中使用Google Drive API时出错

时间:2018-01-21 15:20:11

标签: c#

我刚开始学习编程。

我想在我的Windows窗体应用程序中添加一个简单的界面来将图像上传到我的Google云端硬盘帐户。但是我犯的错误比我想象的要多。我采取的步骤

我尊敬此页:https://developers.google.com/drive/v3/web/quickstart/dotnet

我下载了Google Drive API文件并将其包含在我的项目中。

步骤1 +步骤2

我将Google在参考页面上指定的代码博客粘贴到我的程序CS文件中。然后我用代码中的定义替换了我的API名称。

第3步+

new FileStream(" client_secret.json ",

但现在我收到以下错误。

        UserCredential credential;

        using (var stream =
            new FileStream("GoogleDriveApi.json", FileMode.Open, FileAccess.Read))
        {
            string credPath = System.Environment.GetFolderPath(
                System.Environment.SpecialFolder.Personal);
            credPath = Path.Combine(credPath, ".credentials/drive-dotnet-quickstart.json");

            credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
                GoogleClientSecrets.Load(stream).Secrets,
                Scopes,
                "user",
                CancellationToken.None,
                new FileDataStore(credPath, true)).Result;
            Console.WriteLine("Credential file saved to: " + credPath);
        }

System.InvalidOperationException:'应设置至少一个客户机密码(已安装或Web)

İmage1

0 个答案:

没有答案