Skip to content
This repository was archived by the owner on Mar 25, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
1485d7d
Merge pull request #25 from dylanplecki/dev
dylanplecki Jan 22, 2016
3358bc5
Merge pull request #26 from dylanplecki/dev
dylanplecki Jan 22, 2016
b1dbff9
Merge pull request #30 from dylanplecki/dev
dylanplecki Feb 3, 2016
075f625
refresh claims only when not in bearer mode
ahus1 Feb 10, 2016
59c8b91
Merge pull request #32 from ahus1/skip_refresh_on_bearer_only
dylanplecki Feb 12, 2016
d80b836
Merge pull request #33 from dylanplecki/dev
ntheile Feb 12, 2016
0ca470b
Upgrade solution to 2017... Rename DisableTokenSignatureValidation to…
mattmorg55 Jul 19, 2017
408b263
keycloak doesn't work with MVC5 web app ... Resolved by editing machi…
mattmorg55 Jul 19, 2017
e3f33c3
Updated System.IdentityModel.Tokens.Jwt to 5.1.4
mattmorg55 Jul 19, 2017
989a28f
Removing remote token validation as keycloak doesn't have this endpoi…
mattmorg55 Jul 19, 2017
b5afc47
keycloak doesn't work with MVC5 web app ... Resolved by editing machi…
mattmorg55 Jul 19, 2017
e7ddd0b
Updated System.IdentityModel.Tokens.Jwt to 5.1.4
mattmorg55 Jul 19, 2017
2ad87cb
Removing remote token validation as keycloak doesn't have this endpoi…
mattmorg55 Jul 19, 2017
7d3947e
Renaming projects and changed namespace for Keycloak.IdentityModel
mattmorg55 Jul 19, 2017
6f5c2a5
Updating assembly versioning and NuGet package. Changing to one NuGet…
mattmorg55 Jul 20, 2017
dc95c28
Adding common assembly info
mattmorg55 Jul 20, 2017
361dd7a
Merge branch 'feature/update-ms-libs' into dev
mattmorg55 Jul 20, 2017
72afb5e
Removing renamed folder
mattmorg55 Jul 20, 2017
4a3a0f6
Changing keywords
mattmorg55 Jul 20, 2017
b477cc8
Updating readme
mattmorg55 Jul 31, 2017
17b4dd6
Added SampleWebApp for debugging and ...
mattmorg55 Jul 31, 2017
5e8ded3
3.0.1.0 <-- Updating assembly version
mattmorg55 Jul 31, 2017
cadb1ff
Adding Standard Flow sample
mattmorg55 Jul 31, 2017
694601c
Rename project folder
mattmorg55 Jul 31, 2017
a9097a8
FIX: Remove the client secret from the Keycloak authorization endpoint
highbyte Nov 9, 2017
2b6f278
3.0.2.0 <-- Updating file assembly version
mattmorg55 Nov 9, 2017
3e6a9a4
Feature/fix token expired at login issue (#6)
highbyte Jun 15, 2018
8c6acb3
3.0.3.0 <-- Updating file assembly version
highbyte Jun 19, 2018
6fe7e2a
Feature/Fix for Refresh token signature validation with Keycloak v4.5…
highbyte Nov 1, 2018
6fc37f0
3.0.4.0 <-- Updating file assembly version
highbyte Nov 5, 2018
7e89abe
FIX: Redirect to page when Keycloak authentication fails during login…
highbyte Jan 22, 2019
46f5d65
FIX: Option to disable all validation of Refresh Token (#13)
highbyte Jan 23, 2019
9acb685
3.0.5.0 <-- Updating file assembly version
highbyte Jan 24, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,14 @@ including roles and authorization information, into the OWIN pipeline for use in

## Documentation

All relevant documentation to `Owin.Security.Keycloak` and `KeycloakIdentityModel` can be found on the [GitHub Wiki Page](https://github.com/dylanplecki/KeycloakOwinAuthentication/wiki).
I am in the process of updating the documentation and samples. Older documentation on `Owin.Security.Keycloak` and `KeycloakIdentityModel` can be found on Dylan Plecki's [GitHub Wiki Page](https://github.com/dylanplecki/KeycloakOwinAuthentication/wiki).

## NuGet Packages

For ASP.NET and OWIN functionality:
- `Owin.Security.Keycloak` ([link](https://www.nuget.org/packages/Owin.Security.Keycloak))
Dylan Plecki's project had two NuGet packages, one for each assembly. I have included the Keycloak.IdentityModel assembly in the Owin.Security.Keycloak-3 package so there is no longer a dependency on the KeycloakIdentityModel package.

For native applications or basic functionality:
- `KeycloakIdentityModel` ([link](https://www.nuget.org/packages/KeycloakIdentityModel))
For ASP.NET and OWIN functionality:
- `Owin.Security.Keycloak-3` ([link](https://www.nuget.org/packages/Owin.Security.Keycloak-3/))

Required NuGet package(s) for hosting on ASP.NET / IIS:
- `Microsoft.Owin.Host.SystemWeb` ([link](https://www.nuget.org/packages/Microsoft.Owin.Host.SystemWeb))
Expand All @@ -29,4 +28,4 @@ Recommended NuGet package(s) for hosting on ASP.NET / IIS:

## Issues & Requests

Issues, feature requests, and technical help can be found at the project's [issue tracker](https://github.com/dylanplecki/KeycloakOwinAuthentication/issues) on GitHub.
Issues, feature requests, and technical help can be found at the project's [issue tracker](https://github.com/mattmorg55/Owin.Security.Keycloak/issues) on GitHub.
31 changes: 0 additions & 31 deletions samples/ASP.NET MVC 4.5 Sample/App_Start/BundleConfig.cs

This file was deleted.

13 changes: 0 additions & 13 deletions samples/ASP.NET MVC 4.5 Sample/App_Start/FilterConfig.cs

This file was deleted.

23 changes: 0 additions & 23 deletions samples/ASP.NET MVC 4.5 Sample/App_Start/RouteConfig.cs

This file was deleted.

20 changes: 0 additions & 20 deletions samples/ASP.NET MVC 4.5 Sample/Content/bootstrap.min.css

This file was deleted.

39 changes: 0 additions & 39 deletions samples/ASP.NET MVC 4.5 Sample/Controllers/HomeController.cs

This file was deleted.

1 change: 0 additions & 1 deletion samples/ASP.NET MVC 4.5 Sample/Global.asax

This file was deleted.

21 changes: 0 additions & 21 deletions samples/ASP.NET MVC 4.5 Sample/Global.asax.cs

This file was deleted.

151 changes: 0 additions & 151 deletions samples/ASP.NET MVC 4.5 Sample/Project_Readme.html

This file was deleted.

Binary file removed samples/ASP.NET MVC 4.5 Sample/Scripts/_references.js
Binary file not shown.
Loading