BizDoc.Core.G-Suite 6.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package BizDoc.Core.G-Suite --version 6.4.0
NuGet\Install-Package BizDoc.Core.G-Suite -Version 6.4.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BizDoc.Core.G-Suite" Version="6.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BizDoc.Core.G-Suite --version 6.4.0
#r "nuget: BizDoc.Core.G-Suite, 6.4.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BizDoc.Core.G-Suite as a Cake Addin
#addin nuget:?package=BizDoc.Core.G-Suite&version=6.4.0

// Install BizDoc.Core.G-Suite as a Cake Tool
#tool nuget:?package=BizDoc.Core.G-Suite&version=6.4.0

G-Suite for BizDoc

BizDoc G-Suite integration can be configured to handle authentication, email delivery and email feedback.

To integrate G-Suite, first add the following to startup.cs:

  services.AddBizDoc().
    AddGSuite(options => {
      o.ApplicationName = "{your-app-name}";
      o.ClientSecrets = "{client_secret.json}";
      // o.ApiKey = "...";
    });
...

  app.UseBizDoc().
    UseGSuite();

Configure G-Suite

Create a project at Google API Console, enable Gmail API, create credentials.

Download credentials JSON file and place it in your project. Set the file properties Build Action to Content. Provide the ApplicationName and the file name to ClientSecrets above.

Email Delivery

To use GMail for outgoing emails, add:

    AddGSuite().
       UseEmailer();

Email Feedback

To pull email reply, add the following:

    UseGSuite().
       UseGMailFeedback();

Authentication

To use OAuth2 authentication, add the following:

  services.AddBizDoc().
    AddGSuite(...).
        AddAuthenticationRedirect();
...
  app.UseBizDoc().
    UseGSuite().
        UseAuthenticationRedirect().
        UseIdentityProvider();

The UseIdentityProvider is optional here, and can be replaced with other implementation of IIdentityManager.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.8.2 752 10/19/2022
6.8.1 640 10/18/2022
6.8.0 623 10/16/2022
6.7.5 652 9/15/2022
6.7.4 665 9/15/2022
6.7.3 696 9/15/2022
6.7.2 610 8/9/2022
6.7.1 657 7/31/2022
6.7.0 636 7/21/2022
6.6.6 689 7/3/2022
6.6.5 656 6/26/2022
6.6.4 611 6/23/2022
6.6.3 625 6/20/2022
6.6.2 647 6/15/2022
6.6.1 645 5/28/2022
6.6.0 645 5/20/2022
6.5.4 684 4/29/2022
6.5.3 647 4/14/2022
6.5.2 663 4/6/2022
6.4.0 704 3/10/2022
6.3.5 671 3/8/2022
6.3.4 694 2/24/2022
6.3.3 652 2/19/2022
6.3.2 683 2/10/2022
6.3.1 610 2/7/2022
6.3.0 674 2/6/2022
6.2.3 668 1/20/2022
6.2.2 677 1/15/2022
6.2.1 677 1/13/2022
6.2.0 507 1/7/2022
6.0.7 507 12/20/2021
6.0.6 521 12/20/2021
5.3.0 589 10/13/2021