Oturum Yönetimi
Kullanıcı oturumlarını eşzamanlı tutmak için ön kanal ve arka kanal oturum kapatma dâhil olmak üzere farklı OIDC oturum yönetimi tekniklerini keşfedin.
Oturum Yönetimi, CoddyKit'te ücretsiz bir OAuth2 & OpenID Connect Deep Dive dersidir. Bu, 4 dersinin 3. dersidir. Aşağıdan dersin tamamını ücretsiz okuyabilir, sonra tarayıcıda yerleşik kod editörü ve 7/24 yapay zeka koçu ile uygulamalı olarak pratik yapabilirsin. Bu, OAuth2 & OpenID Connect Deep Dive öğrenme yolunun bir parçasıdır ve ilerlemeniz web ve CoddyKit uygulaması arasında senkronize olur. OAuth2 & OpenID Connect Deep Dive kursu toplamda 4 dersten oluşur.
Bu dersin bazı bölümleri henüz çevrilmemiş olup İngilizce olarak gösterilmektedir.
Keeping Sessions in Sync
In OpenID Connect (OIDC), users often interact with multiple applications (Relying Parties) through a single identity provider (OP).
When a user logs out from one service, they usually expect to be logged out from all connected services. This is where OIDC Session Management comes in!
The Distributed Session Challenge
Imagine you log into Google, then use Google Login for YouTube and Gmail. If you log out of YouTube, should you still be logged into Gmail?
Synchronizing session status across different applications and the identity provider is a complex challenge in distributed systems.
OIDC Session State
To help RPs track a user's session with the OP, OIDC introduces the session_state parameter.
This value, along with the iss (issuer) URL, allows RPs to monitor for changes in the user's session at the OpenID Provider.
Front-Channel Logout Explained
Front-channel logout is one technique for achieving Single Logout (SLO).
It relies on the user's browser to communicate logout requests to all active Relying Parties (RPs).
How Front-Channel Works
When a user logs out from the OP, the OP redirects the user's browser to a special logout endpoint.
This endpoint then uses hidden iframes or image requests to load specific "logout URLs" from each registered RP, signaling them to terminate their local session.
Front-Channel Trade-offs
Front-channel logout is simple to implement for RPs, as it doesn't require complex server-side logic.
- Pros: Easy setup, leverages browser.
- Cons: Can be unreliable. Browser restrictions (like third-party cookie blocking) or network issues can prevent RPs from receiving the logout signal.
Back-Channel Logout Explained
Back-channel logout offers a more robust and reliable way to achieve Single Logout.
Instead of relying on the browser, it uses direct server-to-server communication between the OpenID Provider and the Relying Parties.
How Back-Channel Works
When a user logs out, the OP sends a special Logout Token directly to the RP's pre-registered back-channel logout URI.
Upon receiving this token, the RP validates it and then terminates the user's local session.
Understanding Logout Tokens
A Logout Token is a JSON Web Token (JWT) issued by the OP.
It contains claims like iss (issuer), sub (subject), aud (audience), and a special events claim indicating a back-channel logout event. It also includes a sid (session ID) to identify the specific session to terminate.
Front vs. Back Channel
Choosing between front-channel and back-channel depends on your needs:
- Front-channel: Simpler, browser-dependent, less reliable for critical applications.
- Back-channel: More robust, server-to-server, requires dedicated RP endpoint, better for security-sensitive contexts.
Logout Flow Check
You've learned about the two main OIDC session management techniques. Let's test your understanding.
Session Sync Summary
Great work! You've explored how OpenID Connect handles session management.
We covered the importance of session synchronization, the browser-based front-channel logout, and the more robust server-to-server back-channel logout using Logout Tokens.
Understanding these mechanisms is key to building secure and user-friendly OIDC applications.
Sıkça Sorulan Sorular
“Oturum Yönetimi” dersi ücretsiz mi?
Evet — “Oturum Yönetimi” dersin tüm metni burada web'de ücretsiz olarak okunabilir. Etkileşimli olarak pratik yapmak (yerleşik kod editörü ve 7/24 yapay zeka koçu) ve OAuth2 & OpenID Connect Deep Dive kursunun geri kalanını açmak için CoddyKit PRO'ya yükselt. OAuth2 & OpenID Connect Deep Dive kursu toplamda 4 dersten oluşur.
“Oturum Yönetimi” dersinde ne öğreneceğim?
Kullanıcı oturumlarını eşzamanlı tutmak için ön kanal ve arka kanal oturum kapatma dâhil olmak üzere farklı OIDC oturum yönetimi tekniklerini keşfedin. OAuth2 & OpenID Connect Deep Dive ile uygulamalı kodu tarayıcıda doğrudan çalıştırarak pratik yaparsın ve 7/24 yapay zeka koçu dersi çalışırken sorularını yanıtlar.
OAuth2 & OpenID Connect Deep Dive öğrenmeye başlamak için deneyim gerekli mi?
Önceden deneyim gerekmez. CoddyKit'te OAuth2 & OpenID Connect Deep Dive, başlangıçtan ileri seviyeye kadar yapılandırıldığı için buradan başlayabilir veya başından başlayıp kendi hızında ilerleme yapabilirsin. Bu, 4 dersinin 3. dersidir.
“Oturum Yönetimi” dersi ne kadar sürer?
Çoğu CoddyKit dersi yaklaşık 5–10 dakika sürer. Her biri kısa ve etkileşimli olduğu için sabit ilerleme yaparsın ve web ile uygulama arasında tam olarak bıraktığın yerden devam edebilirsin.
Bu OAuth2 & OpenID Connect Deep Dive dersinde kod yazıp çalıştırabilir miyim?
Evet. Her OAuth2 & OpenID Connect Deep Dive dersi yerleşik bir kod editörü içerir, bu sayede tarayıcıda gerçek kod yazıp çalıştırabilir ve anlık yapay zeka geri bildirimi alırsın — yerel kurulum gerekli değildir.