C# 谷歌日历

C# 谷歌日历,c#,cefsharp,C#,Cefsharp,我正在创建一个应用程序,我需要在其中嵌入谷歌日历。我已经安装了CefSharp框架,并添加了一个链接,以便在面板中打开Google Calander,但一旦输入登录凭据,就会出现一个错误,提示“浏览器或应用程序可能不安全”。我有什么办法可以绕开这件事吗 这是我的代码: CefSettings settings = new CefSettings(); Cef.Initialize(new CefSettings { CachePath = "MyCachePath

我正在创建一个应用程序,我需要在其中嵌入谷歌日历。我已经安装了CefSharp框架,并添加了一个链接,以便在面板中打开Google Calander,但一旦输入登录凭据,就会出现一个错误,提示“浏览器或应用程序可能不安全”。我有什么办法可以绕开这件事吗

这是我的代码:

        CefSettings settings = new CefSettings();
        Cef.Initialize(new CefSettings { CachePath = "MyCachePath", PersistSessionCookies = true });
        string cache_dir = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\CEF";
        settings.CachePath = cache_dir;
        settings.CefCommandLineArgs.Add("persist_session_cookies", "1");
        string link = "https://www.google.com/calendar/render";
        chrome = new ChromiumWebBrowser(link);
        this.Calander.Controls.Add(chrome);
        chrome.Dock = DockStyle.Fill;
这就是错误:

“了解更多信息”链接带您去哪里?