2016-04-16 20 views
-1

GoogleカレンダーのAPIに接続しようとしていますが、FileNotFound例外が発生しています。 "new FileStream( 'client_secret.json')..."という行を実行すると、以下のエラーが表示されます。しかし私は自分のディレクトリで手作業で見てきました。私はここで間違って何をしていますか?このエラーが発生するのはなぜですか? (File Not Found Exception)

型 'System.IO.FileNotFoundException' の未処理の例外がmscorlib.dll で発生しました追加情報:ファイル「Cを見つけることができませんでした:ユーザーがプロジェクト\ 255Cal \ Visual Studioの2015 \ザックStraley \ドキュメント\ \ \ 255Cal \ bin \ Debug \ client_secret.json 'と入力します。

using Google.Apis.Auth.OAuth2; 
using Google.Apis.Calendar.v3; 
using Google.Apis.Calendar.v3.Data; 
using Google.Apis.Services; 
using Google.Apis.Util.Store; 
using System; 
using System.Collections.Generic; 
using System.IO; 
using System.Linq; 
using System.Text; 
using System.Threading; 
using System.Threading.Tasks; 

namespace CalendarQuickstart 
{ 
    class Program 
    { 
     // If modifying these scopes, delete your previously saved credentials 
     // at ~/.credentials/calendar-dotnet-quickstart.json 
     static string[] Scopes = { CalendarService.Scope.CalendarReadonly }; 
     static string ApplicationName = "Google Calendar API .NET Quickstart"; 

     static void Main(string[] args) 
     { 
      UserCredential credential; 

      using (var stream = 
       new FileStream("client_secret.json", FileMode.Open, FileAccess.Read)) 
      { 
       string credPath = System.Environment.GetFolderPath(
        System.Environment.SpecialFolder.Personal); 
       credPath = Path.Combine(credPath, ".credentials/calendar-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); 
      } 

      // Create Google Calendar API service. 
      var service = new CalendarService(new BaseClientService.Initializer() 
      { 
       HttpClientInitializer = credential, 
       ApplicationName = ApplicationName, 
      }); 

      // Define parameters of request. 
      EventsResource.ListRequest request = service.Events.List("primary"); 
      request.TimeMin = DateTime.Now; 
      request.ShowDeleted = false; 
      request.SingleEvents = true; 
      request.MaxResults = 10; 
      request.OrderBy = EventsResource.ListRequest.OrderByEnum.StartTime; 

      // List events. 
      Events events = request.Execute(); 
      Console.WriteLine("Upcoming events:"); 
      if (events.Items != null && events.Items.Count > 0) 
      { 
       foreach (var eventItem in events.Items) 
       { 
        string when = eventItem.Start.DateTime.ToString(); 
        if (String.IsNullOrEmpty(when)) 
        { 
         when = eventItem.Start.Date; 
        } 
        Console.WriteLine("{0} ({1})", eventItem.Summary, when); 
       } 
      } 
      else 
      { 
       Console.WriteLine("No upcoming events found."); 
      } 
      Console.Read(); 

     } 
    } 
} 
+0

こんにちは。助けが必要な場合は、コードとエラーを追加することです。 – ironman

+0

質問全体がハイパーリンクされています... – Zach

+0

ハイパーリンクが表示されません – ironman

答えて

1

あなたclient_secret.jsonファイルには、(現在お使いのbin \デバッグに設定)ビルドディレクトリにコピーする必要があります。

Visual Studioを使用する場合、これを達成する最も簡単な方法は、そのファイルをソリューションに追加し、それをクリックして[出力方向にコピー]オプションを有効にすることです。

enter image description here

+0

が彼の問題だと思うでしょう同じように。 \ Debugディレクトリにそのファイルがあるようには見えません。 –

関連する問題