0Pricing
OAuth2 & OpenID Connect Deep Dive · Урок

Роли и терминология OAuth2

Разберитесь в основных участниках: владельце ресурса, клиенте, сервере авторизации и сервере ресурсов, а также в их взаимодействии.

«Роли и терминология OAuth2» — бесплатный урок OAuth2 & OpenID Connect Deep Dive на CoddyKit. Это урок 2 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения OAuth2 & OpenID Connect Deep Dive, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс OAuth2 & OpenID Connect Deep Dive содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

Intro to OAuth2 Roles

Welcome! OAuth2 involves several key players working together. Understanding each role is crucial to grasp how it secures access to your data without sharing your password.

Let's meet the main characters in the OAuth2 story!

The Resource Owner: You!

The Resource Owner is typically you, the end-user. You own the protected resources (like your photos, contacts, or profile information) stored on a service.

  • You grant permission to applications to access your resources.
  • You never directly share your password with the application.

The Client Application

The Client Application (or just "Client") is the application that wants to access your protected resources. This could be a mobile app, a web application, or even another server-side application.

  • It needs your permission to act on your behalf.
  • It doesn't store your credentials.

The Authorization Server

The Authorization Server (AuthZ Server) is the core of OAuth2. It's responsible for:

  • Authenticating the Resource Owner (you).
  • Obtaining your consent for the Client.
  • Issuing access tokens to the Client.

Think of it as the trusted authority that manages permissions.

The Resource Server

The Resource Server is where your protected resources actually live. This is the API server that holds your photos, emails, or other data.

  • It receives requests from the Client.
  • It validates the access token presented by the Client.
  • If the token is valid, it grants access to the requested resources.

Roles in Action: Simple Flow

Here's a simplified look at how these roles interact:

  1. The Client asks the Resource Owner for permission.
  2. The Resource Owner interacts with the Authorization Server to grant consent.
  3. The Authorization Server gives an access token to the Client.
  4. The Client uses this token to request resources from the Resource Server.

Example: Photo Printing App

Let's say you use a "Print My Photos" app (Client) to print pictures from your Google Photos (Resource Server).

Instead of giving the app your Google password, Google (Authorization Server) asks you if the app can access your photos. You say "Yes," Google gives the app a special token, and the app uses that token to get your photos.

Access Tokens: The Keys

When the Authorization Server issues an access token, it's like giving the Client a temporary, specific key.

  • This key only unlocks certain resources (defined by "scopes").
  • It has a limited lifespan.
  • If lost, it doesn't expose your main password.

We'll cover tokens in more detail later!

The Chain of Trust

OAuth2 builds a chain of trust:

  • The Resource Owner trusts the Authorization Server to handle their consent.
  • The Client trusts the Authorization Server to issue valid tokens.
  • The Resource Server trusts the Authorization Server to verify tokens it receives.

This allows secure delegation without password sharing.

Quick Check: Identify Role

Consider a mobile banking app that wants to display your transaction history from your bank's API.

Which OAuth2 role represents the mobile banking app?

Recap: The Core Players

In this lesson, we identified the four fundamental roles in OAuth2:

  • Resource Owner: The user who owns the data.
  • Client Application: The app requesting access.
  • Authorization Server: Manages user consent and issues tokens.
  • Resource Server: Hosts the protected data and validates tokens.

Understanding these roles is vital for grasping OAuth2's secure delegation model. Next, we'll look at the different ways these roles interact through "grant types"!

Часто задаваемые вопросы

Урок «Роли и терминология OAuth2» бесплатный?

Да — полный текст урока «Роли и терминология OAuth2» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс OAuth2 & OpenID Connect Deep Dive, подпишись на CoddyKit PRO. Курс OAuth2 & OpenID Connect Deep Dive содержит 4 уроков всего.

Чему я научусь в уроке «Роли и терминология OAuth2»?

Разберитесь в основных участниках: владельце ресурса, клиенте, сервере авторизации и сервере ресурсов, а также в их взаимодействии. Ты практикуешь OAuth2 & OpenID Connect Deep Dive с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать OAuth2 & OpenID Connect Deep Dive?

Предыдущий опыт не требуется. OAuth2 & OpenID Connect Deep Dive на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 2 из 4.

Сколько времени занимает урок «Роли и терминология OAuth2»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке OAuth2 & OpenID Connect Deep Dive?

Да. Каждый урок OAuth2 & OpenID Connect Deep Dive включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. OAuth2: протокол делегирования
  2. Роли и терминология OAuth2
  3. Обзор основных типов предоставления
  4. Токены доступа, токены обновления и области действия
← Назад к OAuth2 & OpenID Connect Deep Dive