├── .gitignore ├── LICENSE ├── README.md └── src ├── ScottBrady91.IdentityServer3.Example.sln └── ScottBrady91.IdentityServer3.Example ├── Configuration ├── Cert.cs ├── Clients.cs ├── RelyingParties.cs ├── Scopes.cs ├── Users.cs └── idsrv3test.pfx ├── Properties └── AssemblyInfo.cs ├── ScottBrady91.IdentityServer3.Example.csproj ├── Startup.cs ├── Startup_AspNetIdentity.cs ├── Startup_WsFederation.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/README.md -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example.sln -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Configuration/Cert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Configuration/Cert.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Configuration/Clients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Configuration/Clients.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Configuration/RelyingParties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Configuration/RelyingParties.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Configuration/Scopes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Configuration/Scopes.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Configuration/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Configuration/Users.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Configuration/idsrv3test.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Configuration/idsrv3test.pfx -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/ScottBrady91.IdentityServer3.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/ScottBrady91.IdentityServer3.Example.csproj -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Startup.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Startup_AspNetIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Startup_AspNetIdentity.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Startup_WsFederation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Startup_WsFederation.cs -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Web.Debug.config -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Web.Release.config -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/Web.config -------------------------------------------------------------------------------- /src/ScottBrady91.IdentityServer3.Example/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottbrady91/IdentityServer3-Example/HEAD/src/ScottBrady91.IdentityServer3.Example/packages.config --------------------------------------------------------------------------------