ワンクリックで
msal-obo-flow
On-Behalf-Of (OBO) Flow for web APIs to call downstream APIs while preserving user identity in MSAL.NET
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
On-Behalf-Of (OBO) Flow for web APIs to call downstream APIs while preserving user identity in MSAL.NET
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Authorization Code Flow for web applications using MSAL.NET confidential client to sign in users and access APIs on their behalf
Handle MSAL distributed token cache collisions and stale entries in ASP.NET Core applications
{what this skill teaches agents}
Review API DTO implementations for contract/domain separation, mapping patterns, and REST compliance
This skill should be used when the user asks to "build a feature", "fix a bug", "implement something", "start a dev cycle", types "/dev", or describes a software task that requires design, implementation, testing, and shipping. Orchestrates the full software development lifecycle from interrogation through shipping, with self-learning that improves over time.
Frontend JavaScript patterns for event handling, form UX, and validation integration
| name | msal-obo-flow |
| description | On-Behalf-Of (OBO) Flow for web APIs to call downstream APIs while preserving user identity in MSAL.NET |
| tags | ["msal","obo","on-behalf-of","token-exchange","confidential-client","multi-tier","downstream-api","user-assertion"] |
| source | https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/.github/skills/msal-obo-flow/SKILL.md |
OBO (On-Behalf-Of) Flow enables a web API to act on behalf of an authenticated user to access downstream APIs. The web API receives a user token, validates it, and exchanges it for a token to call another API while maintaining the user's identity and context.
⚠️ Always pass an access token, NOT an ID token to AcquireTokenOnBehalfOf()
ID tokens are for authentication; access tokens are for authorization and API access.
// In web API controller receiving user token
[HttpGet("api/data")]
public async Task<IActionResult> GetData()
{
// Extract access token from Authorization header
var authHeader = Request.Headers["Authorization"].ToString();
var userToken = authHeader.Replace("Bearer ", "");
var app = ConfidentialClientApplicationBuilder
.Create(clientId)
.WithCertificate(cert)
.WithAuthority($"https://login.microsoftonline.com/{tenantId}/v2.0")
.Build();
// Create UserAssertion with access token (not ID token)
var userAssertion = new UserAssertion(userToken, "urn:ietf:params:oauth:grant-type:jwt-bearer");
var result = await app.AcquireTokenOnBehalfOf(
new[] { "scope-uri" },
userAssertion)
.ExecuteAsync();
// Use result.AccessToken to call downstream API
return Ok(result.AccessToken);
}
msal-shared/references/token-caching-strategies.md) for optimal session-based token cachingtid claim from user token for guest user scenarios — use tenant-specific authority, not /commonAddDistributedTokenCaches() with MsalDistributedTokenCacheAdapterOptionsMsalUiRequiredException: MFA or conditional access required — requires client re-authenticationMicrosoft.Identity.Web's ITokenAcquisition.GetAccessTokenForUserAsync() for OBO — it handles the token exchange automaticallyJosephGuadagno.Broadcasting.Web) calls the API (JosephGuadagno.Broadcasting.Api) using OBO flowAddDistributedTokenCaches() → AddDistributedSqlServerCache()MsalDistributedTokenCacheAdapterOptions.AbsoluteExpirationRelativeToNow should be set (e.g., 15 minutes) to prevent L1 cache misses causing per-request SQL readsChoose OBO if:
Avoid if: