Cheetah
AuthorizationCodeInterface.php
Go to the documentation of this file.
1 <?php
2 
3 namespace OAuth2\Storage;
4 
13 {
21  const RESPONSE_TYPE_CODE = "code";
22 
49  public function getAuthorizationCode($code);
50 
71  public function setAuthorizationCode($code, $client_id, $user_id, $redirect_uri, $expires, $scope = null);
72 
85  public function expireAuthorizationCode($code);
86 }
php
OAuth2\Storage\AuthorizationCodeInterface\getAuthorizationCode
getAuthorizationCode($code)
OAuth2\Storage\AuthorizationCodeInterface
Definition: AuthorizationCodeInterface.php:13
OAuth2\Storage\AuthorizationCodeInterface\RESPONSE_TYPE_CODE
const RESPONSE_TYPE_CODE
Definition: AuthorizationCodeInterface.php:21
OAuth2\Storage\AuthorizationCodeInterface\setAuthorizationCode
setAuthorizationCode($code, $client_id, $user_id, $redirect_uri, $expires, $scope=null)
OAuth2\Storage
Definition: AccessTokenInterface.php:3
OAuth2\Storage\AuthorizationCodeInterface\expireAuthorizationCode
expireAuthorizationCode($code)