Nemiro.OAuth.LoginForms 1.7.0

dotnet add package Nemiro.OAuth.LoginForms --version 1.7.0
NuGet\Install-Package Nemiro.OAuth.LoginForms -Version 1.7.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="Nemiro.OAuth.LoginForms" Version="1.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nemiro.OAuth.LoginForms --version 1.7.0
#r "nuget: Nemiro.OAuth.LoginForms, 1.7.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 Nemiro.OAuth.LoginForms as a Cake Addin
#addin nuget:?package=Nemiro.OAuth.LoginForms&version=1.7.0

// Install Nemiro.OAuth.LoginForms as a Cake Tool
#tool nuget:?package=Nemiro.OAuth.LoginForms&version=1.7.0

Ready-to-use authorization forms (Windows Forms only) for popular sites using OAuth: Google, Facebook, Twitter, Dropbox, Yandex etc.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 is compatible.  net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
1.7.0 19,889 8/24/2017
1.7.0-beta1 885 7/8/2017
1.6.0 13,293 1/15/2017
1.5.0 1,607 9/12/2016
1.4.2483 1,686 8/8/2016
1.4.2423 1,357 7/11/2016
1.4.0 1,921 12/7/2015
1.3.0 1,775 6/25/2015
1.2.0 1,395 6/21/2015
1.1.0 2,258 2/11/2015
1.0.0 1,340 1/4/2015

August 25, 2017

---

This package differs from v1.7.0-beta1 only by an updated link to the Nemiro.OAuth and removing the beta testing status.

---

ATTENTION:

In this release, the authentication logic has changed.
Now the access token requests are executed instead of the authorization code.

For most forms, the returnUrl parameter in the constructor is now required.

You may need to obtain new keys to perform authentication.
For example, for Google, you need to create a key for web applications, instead of standalone.

The old behavior can be returned by specifying a responseType in the designer with the value ResponseType.Code:
var login = new GoogleLogin
(
 "934704666049-129jsvmelksmcmf250ir90aqn8pk4nak.apps.googleusercontent.com",
 "OS7HZ1cfJnhdIFZ6fUsgamH-",
 returnUrl: null,
 scope: "https://www.googleapis.com/auth/drive",
 loadUserInfo: true,
 responseType: ResponseType.Code
);