msal-auth-code-flow
Authorization Code Flow for web applications using MSAL.NET confidential client to sign in users and access APIs on their behalf
소스 정보
- 저장소
- AzureAD/microsoft-authentication-library-for-dotnet
- 최근 소스 활동
- 2026년 4월 3일 16:23
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,502
- 포크
- 411
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- msal-auth-code-flow
- description
- Authorization Code Flow for web applications using MSAL.NET confidential client to sign in users and access APIs on their behalf
- tags
- ["msal","auth-code","authorization-code","web-app","confidential-client","user-sign-in","redirect","consent"]
# Authorization Code Flow Skill
## Overview
Authorization Code Flow is used by web applications to authenticate users and obtain access tokens on their behalf.
## When to Use
- Web applications with server-side backend
- Need to access user-scoped APIs
- User sign-in required
- Refresh tokens needed
## Flow Steps
1. Redirect user to AAD login page
2. User logs in and consents to permissions
3. AAD returns authorization code to callback URL
4. Server exchanges code for token using confidential credentials
5. Token cached and used to access APIs
## Agent Actions
### Generate Code Snippet
Agent can show code snippets for each credential type:
- Standard Certificate: [with-certificate.cs](../msal-shared/code-examples/with-certificate.cs)
- Certificate with SNI: [with-certificate-sni.cs](../msal-shared/code-examples/with-certificate-sni.cs)
- Federated Identity Credentials: [with-federated-identity-credentials.cs](../msal-shared/code-examples/with-federated-identity-credentials.cs)
### Setup Guidance
Reference appropriate credential setup:
- [Certificate Setup](../msal-shared/credential-setup/certificate-setup.md)
- [Certificate with SNI](../msal-shared/credential-setup/certificate-sni-setup.md)
- [Federated Identity Credentials](../msal-shared/credential-setup/federated-identity-credentials.md)
### Example: Web Application with Certificate
```csharp
// In controller's callback method
[HttpGet("auth/callback")]
public async Task HandleCallback(string code, string state)
{
// See: with-certificate.cs for credential setup
var app = ConfidentialClientApplicationBuilder
.Create(clientId)
.WithCertificate(cert)
.WithAuthority($"https://login.microsoftonline.com/{tenantId}/v2.0")
.WithRedirectUri("https://myapp.com/auth/callback")
.Build();
var result = await app.AcquireTokenByAuthorizationCode(
new[] { "scope-uri" },
code)
.ExecuteAsync();
// Result contains AccessToken, RefreshToken, ExpiresOn
}
```
### Error Resolution
Refer to [Troubleshooting Guide](../msal-shared/patterns/troubleshooting.md)
### Best Practices
- Use [Token Caching Strategies](../msal-shared/patterns/token-caching-strategies.md) for optimal token acquisition
- Implement [Error Handling Patterns](../msal-shared/patterns/error-handling-patterns.md)
- Store refresh tokens securely
- Use PKCE for native clients
- For advanced caching options including distributed caches for multi-instance deployments, see [Token cache serialization documentation](https://learn.microsoft.com/en-us/entra/msal/dotnet/how-to/token-cache-serialization?tabs=msal)
### Explain the Flow
1. **Initiation**: Redirect to `https://login.microsoftonline.com/{tenant}/oauth2/v2.0/authorize?client_id=...&redirect_uri=...`
2. **User Action**: User logs in and grants consent
3. **Code Reception**: AAD sends authorization code to redirect URI
4. **Token Exchange**: Server uses code + client credentials to get token
5. **Token Usage**: Token cached and used for API calls
### Decision Help
**Choose Auth Code Flow if:**
- Building web application with server backend
- Need to access user resources with user consent
- Want to maintain long-lived sessions (using refresh tokens)
**Avoid if:**
- Building single-page app (use implicit/hybrid instead)
- Don't have secure backend for credentials
GitHub에서 보기