Skip to content

Commit

Permalink
bff\architecture - fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
josephdecock committed Feb 15, 2024
1 parent 51887e5 commit 5099ad6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "hugo",
"request": "launch",
"type": "f5anything",
"command": "hugo server --navigateToChanged --source ${workspaceFolder}/IdentityServer/v7/docs"
"command": "hugo server --navigateToChanged --source ${workspaceFolder}/IdentityServer/v6/docs"
}
]
}
2 changes: 1 addition & 1 deletion IdentityServer/v6/docs/content/bff/architecture/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Duende.BFF builds on widely used tools and frameworks, including ASP.NET Core's
Duende.BFF uses ASP.NET's OpenID Connect handler for OIDC and OAuth protocol processing. As long-term users of and contributors to this library, we think it is a well implemented and flexible implementation of the protocols.

#### ASP.NET Cookie Handler
Duende.BFF uses ASP.NET's Cookie handler for session management. The Cookie handler provides a claims-based identity to the application persisted in a digitally signed and encrypted cookie that is protected with modern cookie security features, including the Secure, HttpOnly and SameSite attributes. The handler also provides absolute and sliding session support, and has a flexible extensibility model, which Duende.BFF uses to implement [server-side session management](/bff/session/server_side_sessions/) and [back-channel logout support](/bff/session/management/back-channel-logout/).
Duende.BFF uses ASP.NET's Cookie handler for session management. The Cookie handler provides a claims-based identity to the application persisted in a digitally signed and encrypted cookie that is protected with modern cookie security features, including the Secure, HttpOnly and SameSite attributes. The handler also provides absolute and sliding session support, and has a flexible extensibility model, which Duende.BFF uses to implement [server-side session management]({{<ref "/bff/session/server_side_sessions" >}}) and [back-channel logout support]({{<ref "/bff/session/management/back-channel-logout" >}}).

#### Duende.AccessTokenManagement
Duende.BFF uses the Duende.AccessTokenManagement library for access token management and storage. This includes storage and retrieval of tokens, refreshing tokens as needed, and revoking tokens on logout. The library provides integration with the ASP.NET HTTP client to automatically attach tokens to outgoing HTTP requests, and its underlying management actions can also be programmatically invoked through an imperative API.
Expand Down
2 changes: 1 addition & 1 deletion IdentityServer/v7/docs/content/bff/architecture/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Duende.BFF builds on widely used tools and frameworks, including ASP.NET Core's
Duende.BFF uses ASP.NET's OpenID Connect handler for OIDC and OAuth protocol processing. As long-term users of and contributors to this library, we think it is a well implemented and flexible implementation of the protocols.

#### ASP.NET Cookie Handler
Duende.BFF uses ASP.NET's Cookie handler for session management. The Cookie handler provides a claims-based identity to the application persisted in a digitally signed and encrypted cookie that is protected with modern cookie security features, including the Secure, HttpOnly and SameSite attributes. The handler also provides absolute and sliding session support, and has a flexible extensibility model, which Duende.BFF uses to implement [server-side session management]({{<ref "/bff/session/server_side_sessions/" >}}) and [back-channel logout support]({{<ref "/bff/session/management/back-channel-logout/" >}}).
Duende.BFF uses ASP.NET's Cookie handler for session management. The Cookie handler provides a claims-based identity to the application persisted in a digitally signed and encrypted cookie that is protected with modern cookie security features, including the Secure, HttpOnly and SameSite attributes. The handler also provides absolute and sliding session support, and has a flexible extensibility model, which Duende.BFF uses to implement [server-side session management]({{<ref "/bff/session/server_side_sessions" >}}) and [back-channel logout support]({{<ref "/bff/session/management/back-channel-logout" >}}).

#### Duende.AccessTokenManagement
Duende.BFF uses the Duende.AccessTokenManagement library for access token management and storage. This includes storage and retrieval of tokens, refreshing tokens as needed, and revoking tokens on logout. The library provides integration with the ASP.NET HTTP client to automatically attach tokens to outgoing HTTP requests, and its underlying management actions can also be programmatically invoked through an imperative API.
Expand Down

0 comments on commit 5099ad6

Please sign in to comment.