From 802f6d74a5ac3475c4d7c605d0d13aa2401ea944 Mon Sep 17 00:00:00 2001 From: Bob Mulder Date: Thu, 28 Apr 2016 10:42:24 +0200 Subject: [PATCH] Add meaning of `Resource owner` to terminology.md --- terminology.md | 1 + 1 file changed, 1 insertion(+) diff --git a/terminology.md b/terminology.md index 27b5c32e..785ddb75 100755 --- a/terminology.md +++ b/terminology.md @@ -12,5 +12,6 @@ permalink: /terminology/ * `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. * `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. +* `Resource owner` - The user who authorizes an application to access their account. The application's access to the user's account is limited to the "scope" of the authorization granted (e.g. read or write access). * `Scope` - A permission. * `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).