mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
862 B
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.