0

Web API から Google クラウド スケジュールでジョブを作成しようとしています。

クライアント ライブラリを使用してジョブを作成できますが、Google に投稿されていないと思います。

    CloudSchedulerService cloudScheduler = new CloudSchedulerService();
    IDictionary<string, string> header = new Dictionary<string, string>();
    header.Add("Content-Type", "application/json");
    header.Add("Authorization", "Bearer sk_test_XKokBfNWv6FIYuTMg5sLPjhJ");
    HttpTarget httpTarget = new HttpTarget()
    {
        Body = "Check",
        Headers = header,
        HttpMethod = "POST",
        Uri = "******"
    };
    Job job = new Job()
    {
        Description = "testing",
        HttpTarget = httpTarget,
        Name = "projects/******/locations/europe-west3/jobs/testjob4",
        Schedule = "5 * * * *",
        TimeZone = "Asia/Kuwait"
    };
    cloudScheduler.Projects.Locations.Jobs.Create(job, "projects/******/locations/europe-west3");
4

1 に答える 1