Nemiro.OAuth.LoginForms
1.7.0-beta1
See the version list below for details.
dotnet add package Nemiro.OAuth.LoginForms --version 1.7.0-beta1
NuGet\Install-Package Nemiro.OAuth.LoginForms -Version 1.7.0-beta1
<PackageReference Include="Nemiro.OAuth.LoginForms" Version="1.7.0-beta1" />
paket add Nemiro.OAuth.LoginForms --version 1.7.0-beta1
#r "nuget: Nemiro.OAuth.LoginForms, 1.7.0-beta1"
// Install Nemiro.OAuth.LoginForms as a Cake Addin #addin nuget:?package=Nemiro.OAuth.LoginForms&version=1.7.0-beta1&prerelease // Install Nemiro.OAuth.LoginForms as a Cake Tool #tool nuget:?package=Nemiro.OAuth.LoginForms&version=1.7.0-beta1&prerelease
Ready-to-use authorization forms for popular sites using OAuth: Google, Facebook, Twitter, Dropbox, Yandex and many others. Total 20 sites (poviders). And also the library allows to create custom forms.
Windows Forms (.NET Framework) only.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. 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-beta1)
-
.NETFramework 4.0
- Nemiro.OAuth (>= 1.13.0-beta1)
-
.NETFramework 4.5
- Nemiro.OAuth (>= 1.13.0-beta1)
-
.NETFramework 4.5.1
- Nemiro.OAuth (>= 1.13.0-beta1)
-
.NETFramework 4.5.2
- Nemiro.OAuth (>= 1.13.0-beta1)
-
.NETFramework 4.6
- Nemiro.OAuth (>= 1.13.0-beta1)
-
.NETFramework 4.6.1
- Nemiro.OAuth (>= 1.13.0-beta1)
-
.NETFramework 4.6.2
- Nemiro.OAuth (>= 1.13.0-beta1)
-
.NETFramework 4.7
- Nemiro.OAuth (>= 1.13.0-beta1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
July 8, 2017
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
);