Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{% set api_base_path = "https://localhost:9443/t/{root_organization_handle}" %}

{% include "../../../../../../includes/guides/agentic-ai/ai-agents/token-exchange-for-agents.md" %}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{% set base_url = "https://localhost:9443" %}

{% include "../../../../../includes/guides/authorization/delegation.md" %}
2 changes: 2 additions & 0 deletions en/identity-server/7.2.0/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,7 @@ nav:
- User impersonation: guides/authorization/user-impersonation/index.md
- via Console: guides/authorization/user-impersonation/via-console.md
- via business application (advanced): guides/authorization/user-impersonation/via-business-application.md
- Delegation: guides/authorization/delegation.md
- Rich Authorization Requests: guides/authorization/rich-authorization-requests.md
- Identity Verification:
- Identity Verification: guides/identity-verification/index.md
Expand Down Expand Up @@ -944,6 +945,7 @@ nav:
- Agent credentials: guides/agentic-ai/ai-agents/agent-credentials.md
- Access control for agents: guides/agentic-ai/ai-agents/access-control-for-agents.md
- Agent authentication: guides/agentic-ai/ai-agents/agent-authentication.md
- Token exchange for agents: guides/agentic-ai/ai-agents/token-exchange-for-agents.md
- Your WSO2 Identity Server:
- Your WSO2 Identity Server: guides/your-is/index.md
- Manage Console access: guides/your-is/manage-console-access.md
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ The flow proceeds as follows:

{% endif %}

{% if product_name == "WSO2 Identity Platform" or (product_name == "WSO2 Identity Server" and is_version not in ["7.0.0", "7.1.0", "7.2.0", "7.3.0"]) %}
{% if product_name == "WSO2 Identity Platform" or (product_name == "WSO2 Identity Server" and is_version not in ["7.0.0", "7.1.0", "7.3.0"]) %}

### Using token exchange for on-behalf-of delegation

Expand Down
6 changes: 3 additions & 3 deletions en/includes/guides/authentication/configure-token-exchange.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ The same application can play both roles.

#### Configure the subject token application

{% if product_name == "WSO2 Identity Platform" or (product_name == "WSO2 Identity Server" and is_version not in ["7.0.0", "7.1.0", "7.2.0", "7.3.0"]) %}
{% if product_name == "WSO2 Identity Platform" or (product_name == "WSO2 Identity Server" and is_version not in ["7.0.0", "7.1.0", "7.3.0"]) %}

To configure the subject token application:

Expand Down Expand Up @@ -267,7 +267,7 @@ Follow the steps given below.

Upon successful execution, you will receive the exchanged token.

{% if product_name == "WSO2 Identity Platform" or (product_name == "WSO2 Identity Server" and is_version not in ["7.0.0", "7.1.0", "7.2.0", "7.3.0"]) %}
{% if product_name == "WSO2 Identity Platform" or (product_name == "WSO2 Identity Server" and is_version not in ["7.0.0", "7.1.0", "7.3.0"]) %}

## Delegation

Expand All @@ -277,7 +277,7 @@ For instructions, see [Delegation]({{base_path}}/guides/authorization/delegation

{% endif %}

{% if product_name == "WSO2 Identity Platform" or (product_name == "WSO2 Identity Server" and is_version not in ["7.0.0", "7.1.0", "7.2.0", "7.3.0"]) %}
{% if product_name == "WSO2 Identity Platform" or (product_name == "WSO2 Identity Server" and is_version not in ["7.0.0", "7.1.0", "7.3.0"]) %}

## Request a specific audience

Expand Down
Loading