错误 404:删除日历事件时



我在删除事件时遇到以下错误......

Google.Apis.Requests.RequestError

Not Found [404 ]

这是代码:

public static string delete(CalendarService service, string id)
{`enter code here`
    try
    {
        //id = ja7jihu9eepa2l7h15d1vusf19
        return service.Calendars.Delete(id).Execute();
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
        return null;
    }
}

有人可以推荐我吗?

要删除事件,您需要调用 Events.Delete() 提供日历 ID 和事件 ID。日历 ID 是日历的电子邮件地址,而事件 ID 是字母数字事件标识符(如您注释掉的标识符)。

https://developers.google.com/google-apps/calendar/v3/reference/events/delete

相关内容

  • 没有找到相关文章

最新更新