oauth2-server/repository-interface-scope.md
2016-03-24 19:26:58 +00:00

862 B

layout title permalink
default ScopeRepositoryInterface documentation /scope-repository-interface/

Scope Repository Interface

getScopeEntityByIdentifier() : ScopeEntityInterface

This method is called to validate a scope.

If the scope is valid validated you should return an instance of \League\OAuth2\Server\Entities\Interfaces\ScopeEntityInterface

finalizeScopes() : ScopeEntityInterface[]

This method is called right before an access token or authorization code is created.

Given a client, grant type and optional user identifier validate the set of scopes requested are valid and optionally append additional scopes or remove requested scopes.

This method is useful for integrating with your own app's permissions system.

You must return an array of ScopeEntityInterface instances; either the original scopes or an updated set.