我正在尝试通过Web Api在Google Cloud Schedule中创建作业。
我能够使用客户端库创建工作,但我相信它不会发布到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");
答案 0 :(得分:0)
我通过将googleCredential与从Google控制台创建的服务帐户一起使用来解决了此问题。
public static string[] scope =
{
CloudSchedulerService.Scope.CloudPlatform
};
public static void CreateJob()
{
GoogleCredential googleCredential = GoogleCredential.FromFile("filepath").CreateScoped(scope);
if (googleCredential != null)
{
ICredential credential = googleCredential.UnderlyingCredential;
ServiceAccountCredential serviceAccountCredential = credential as ServiceAccountCredential;
CloudSchedulerService cloudScheduler = new CloudSchedulerService(new Google.Apis.Services.BaseClientService.Initializer()
{
HttpClientInitializer = googleCredential,
GZipEnabled = false
});
IDictionary<string, string> header = new Dictionary<string, string>();
header.Add("Content-Type", "application/json");
header.Add("Authorization", "Bearer "+jobDetails.httpTarget.Authorization);
HttpTarget httpTarget = new HttpTarget()
{
Body = Base64Encode("json string"),
Headers = header,
HttpMethod = "POST",
Uri = "*********"
};
Job job = new Job()
{
Description = "",
HttpTarget = httpTarget,
Name = "projects/" + serviceAccountCredential.ProjectId + "/locations/europe-west3/jobs/" + jobId,
Schedule = "5 * * * *", //cron formate
TimeZone = "Asia/Kuwait"
};
cloudScheduler.Projects.Locations.Jobs.Create(job, "projects/" + serviceAccountCredential.ProjectId + "/locations/europe-west3").Execute();
} }