Don*_*nna 3 c# asp.net google-calendar-api
我对于使用Google Calendar API在ASP.NET网络表单(C#)中添加/修改事件感到困惑。
我不确定是否需要oAuth或什么。我的应用程序在我自己的服务器上,用于访问我自己的域和日历。我不需要其他用户给我访问他们的日历的权限;我只需要通过我的应用程序访问自己的应用程序即可。
我想在我的一个aspx页面上将事件信息发送到我的Google日历,以添加(或稍后修改)该事件。
我已经检查了各种代码示例和Google入门指南。我只是不清楚确切需要什么。我已经设置了API密钥和oAuth2客户端ID。Google的说明使我发了圈,这很可能是由于我需要澄清所需内容。
有人可以消除我的困惑并指出正确的方向吗?
Moh*_*hid 12
呼叫Google Clould OAuth2受保护的资源
从您的服务器到Google服务器
没有用户交互
访问自己的数据
使用C#
代码:
var private_key = @"-----BEGIN PRIVATE KEY-ccc-END PRIVATE KEY-----\n";
string calanderId = @"xxxxxxxxxxxxx@group.calendar.google.com";
var client_email = @"my-google-calender@xxx.iam.gserviceaccount.com";
var credential =
new ServiceAccountCredential(
new ServiceAccountCredential.Initializer(client_email)
{
Scopes = new string[] { CalendarService.Scope.Calendar }
}.FromPrivateKey(private_key));
var service = new CalendarService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
});
Run Code Online (Sandbox Code Playgroud)
使用服务方法获取数据
可以从此链接生成私钥和client_email
日历ID可以在calendar.google.com上找到
您必须与client_email共享日历,请参见演示
Google You You
Pay + Pay + Pay +
Google Google You
Manage Manage Manage%
+----------+ +----------+ +----------+
| Gmail | | | | |
| Calendar | | G Suite | | Google |
| drive | | | | Cloud |
| | | | | |
+----^-----+ +----+-----+ +------+---+
| ^ ^
| | |
| | |
| | |
+-------------------------------------------------------------+
| | | | |
| | | | |
| | | Google | |
| | | Oauth2 | |
| | | Server | |
| | | | |
| | | | |
+-------------------------------------------------------------+
| | |
| | +----------------+ |
| | | | |
| | | | | No
| |require | | | Consent
| |admin | | |
| |consent | | |
|require | | +-------+
|user | | |
|consent +---------+ Your app |
| | |
| | |
| | |
| | |
+-------------------------+ |
| |
| |
| |
+----------------+
You
Pay +
You
Manage
Run Code Online (Sandbox Code Playgroud)
https://console.developers.google.com/projectselector/apis/library/calendar-json.googleapis.com
Install-Package Google.Apis.Calendar.v3
Run Code Online (Sandbox Code Playgroud)
using Google.Apis.Auth.OAuth2;
using Google.Apis.Calendar.v3;
using Google.Apis.Calendar.v3.Data;
using Google.Apis.Services;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace CalendarQuickstart
{
class Program
{
static void Main(string[] args)
{
string jsonFile = "xxxxxxx-xxxxxxxxxxxxx.json";
string calanderId = @"xxxxxxxxxxxxx@group.calendar.google.com";
string[] Scopes = { CalendarService.Scope.Calendar };
ServiceAccountCredential credential;
using (var stream =
new FileStream(jsonFile, FileMode.Open, FileAccess.Read))
{
var confg = Google.Apis.Json.NewtonsoftJsonSerializer.Instance.Deserialize<JsonCredentialParameters>(stream);
credential = new ServiceAccountCredential(
new ServiceAccountCredential.Initializer(confg.ClientEmail)
{
Scopes = Scopes
}.FromPrivateKey(confg.PrivateKey));
}
var service = new CalendarService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = "Calendar API Sample",
});
var calander = service.Calendars.Get(calanderId).Execute();
Console.WriteLine("Calander Name :");
Console.WriteLine(calander.Summary);
Console.WriteLine("click for more .. ");
Console.Read();
// Define parameters of request.
EventsResource.ListRequest listRequest = service.Events.List(calanderId);
listRequest.TimeMin = DateTime.Now;
listRequest.ShowDeleted = false;
listRequest.SingleEvents = true;
listRequest.MaxResults = 10;
listRequest.OrderBy = EventsResource.ListRequest.OrderByEnum.StartTime;
// List events.
Events events = listRequest.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.WriteLine("click for more .. ");
Console.Read();
var myevent = DB.Find(x => x.Id == "eventid" + 1);
var InsertRequest = service.Events.Insert(myevent, calanderId);
try
{
InsertRequest.Execute();
}
catch (Exception)
{
try
{
service.Events.Update(myevent, calanderId, myevent.Id).Execute();
Console.WriteLine("Insert/Update new Event ");
Console.Read();
}
catch (Exception)
{
Console.WriteLine("can't Insert/Update new Event ");
}
}
}
static List<Event> DB =
new List<Event>() {
new Event(){
Id = "eventid" + 1,
Summary = "Google I/O 2015",
Location = "800 Howard St., San Francisco, CA 94103",
Description = "A chance to hear more about Google's developer products.",
Start = new EventDateTime()
{
DateTime = new DateTime(2019, 01, 13, 15, 30, 0),
TimeZone = "America/Los_Angeles",
},
End = new EventDateTime()
{
DateTime = new DateTime(2019, 01, 14, 15, 30, 0),
TimeZone = "America/Los_Angeles",
},
Recurrence = new List<string> { "RRULE:FREQ=DAILY;COUNT=2" },
Attendees = new List<EventAttendee>
{
new EventAttendee() { Email = "lpage@example.com"},
new EventAttendee() { Email = "sbrin@example.com"}
}
}
};
}
}
Run Code Online (Sandbox Code Playgroud)
string jsonFile = "xxxxxxx-xxxxxxxx.json";
Run Code Online (Sandbox Code Playgroud)
string calanderId = @"xxxxxxxxxxxxx@group.calendar.google.com";
Run Code Online (Sandbox Code Playgroud)
2019/01/13
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3215 次 |
| 最近记录: |