oauth2-server/terminology.md

17 lines
1.1 KiB
Markdown
Raw Normal View History

2014-10-01 03:14:18 +05:30
---
layout: default
title: Terminology
permalink: /terminology/
---
# Terminology
2015-09-05 02:05:55 +05:30
* `Access token` - A token used to access protected resources.
2015-04-19 15:31:36 +05:30
* `Authorization code` - An intermediary token generated when a user authorizes a client to access protected resources on their behalf. The client receives this token and exchanges it for an access token.
2014-10-01 03:14:18 +05:30
* `Authorization server` - A server which issues access tokens after successfully authenticating a client and resource owner, and authorizing the request.
2015-09-05 02:05:55 +05:30
* `Client` - An application which accesses protected resources on behalf of the resource owner (such as a user). The client could be hosted on a server, desktop, mobile or other device.
2014-10-01 03:14:18 +05:30
* `Grant` - A grant is a method of acquiring an access token.
* `Resource server` - A server which sits in front of protected resources (for example "tweets", users' photos, or personal data) and is capable of accepting and responsing to protected resource requests using access tokens.
2015-09-05 02:05:55 +05:30
* `Scope` - A permission.
2016-03-16 02:03:44 +05:30
* `JWT` - A JSON Web Token is a method for representing claims securely between two parties as defined in [RFC 7519](https://tools.ietf.org/html/rfc7519).