scopeExists()
scopeExists( $scope) : TRUE
Check if the provided scope exists.
Parameters
| $scope | A space-separated string of scopes. |
Returns
TRUE —if it exists, FALSE otherwise.
Class to handle scope implementation logic
getDefaultScope( $client_id = null) : string
The default scope to use in the event the client does not request one. By returning "false", a request_error is returned by the server to force a scope request by the client. By returning "null", opt out of requiring scopes
| $client_id | An optional client id that can be used to return customized default scopes. |
representation of default scope, null if scopes are not defined, or false to force scope request by the client
ex: 'default' ex: null
checkScope(string $required_scope, string $available_scope) : boolean
Check if everything in required scope is contained in available scope.
| string | $required_scope |
|
| string | $available_scope |
|
getScopeFromRequest(\OAuth2\RequestInterface $request) : string
Return scope info from request
| \OAuth2\RequestInterface | $request |
|