Google API 使用 .NET Core 应用程序

Google API with .NET Core application

我想将 gmail 连接添加到我的 .NET Core 应用程序。我正在查看 nuget 包

Google.Apis.Gmail.v1 Client Library

在支持的平台或不兼容的平台中提到了 .NET Standard 1.3 支持,但没有提到 .NET Core。困惑...

谢谢

是的,所有 Google.Apis.* nuget 包,包括 Google.Apis.Gmail.v1,都支持 .NET Core。

如果您查看 this ".NET platforms support" table,您可以看到 .NET Core 1.0 实现了 netstandard1.3(以及其他)。因此 Google 库中的 netstandard1.3 支持提供了对 .NET Core 应用程序的支持。

因此,例如,您可以构建:

  • 一个 .NET Core 控制台应用程序(例如,针对 netcoreapp1.0)
  • 一个ASP.NET核心应用;但请注意,我们目前不为 ASP.NET Core 提供简单的身份验证机制。这在 github 问题 #933 中被跟踪。