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
<PackageReference Include="Nemiro.OAuth.LoginForms" Version="1.7.0" />
paket add Nemiro.OAuth.LoginForms --version 1.7.0
#r "nuget: Nemiro.OAuth.LoginForms, 1.7.0"
// 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 | Versions 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. |
-
.NETFramework 3.5
- Nemiro.OAuth (>= 1.13.0)
-
.NETFramework 4.0
- Nemiro.OAuth (>= 1.13.0)
-
.NETFramework 4.5
- Nemiro.OAuth (>= 1.13.0)
-
.NETFramework 4.5.1
- Nemiro.OAuth (>= 1.13.0)
-
.NETFramework 4.5.2
- Nemiro.OAuth (>= 1.13.0)
-
.NETFramework 4.6
- Nemiro.OAuth (>= 1.13.0)
-
.NETFramework 4.6.1
- Nemiro.OAuth (>= 1.13.0)
-
.NETFramework 4.6.2
- Nemiro.OAuth (>= 1.13.0)
-
.NETFramework 4.7
- Nemiro.OAuth (>= 1.13.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
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
);