PHP 클래스 fkooman\RemoteStorage\RemoteStorageClientStorage

상속: implements fkooman\OAuth\ClientStorageInterface
파일 보기 프로젝트 열기: fkooman/php-remote-storage 1 사용 예제들

공개 메소드들

메소드 설명
getClient ( string $clientId, string | null $responseType = null, string | null $redirectUri = null, string | null $scope = null ) : fkooman\OAuth\Client | false Retrieve a client based on clientId, responseType, redirectUri and scope. The parameters except the clientId are optional and are used to support non-registered clients.

비공개 메소드들

메소드 설명
normalizeRedirectUriOrigin ( $redirectUri )

메소드 상세

getClient() 공개 메소드

Retrieve a client based on clientId, responseType, redirectUri and scope. The parameters except the clientId are optional and are used to support non-registered clients.
public getClient ( string $clientId, string | null $responseType = null, string | null $redirectUri = null, string | null $scope = null ) : fkooman\OAuth\Client | false
$clientId string the clientId
$responseType string | null the responseType or null
$redirectUri string | null the redirectUri or null
$scope string | null the scope or null
리턴 fkooman\OAuth\Client | false if the client exists with the clientId it returns Client, otherwise false