我正在使用Alex Bilbie提供的phpleague库开发oAuth 2.0服务器。但是,在初始化授权服务器之后,当我声明存储类时,它会抛出以下错误。
“致命错误:未找到类'Storage \ SessionStorage'”
请帮我解决这个问题。我在这里阅读了有关此问题的帖子: - Guide me implementing Oauth2 PHP server using thephpleague library
请告诉我如何实施存储类。我目前的代码:
require_once "/../vendor/autoload.php";
$server = new \League\OAuth2\Server\AuthorizationServer;
$server->setSessionStorage(new Storage\SessionStorage);
$server->setAccessTokenStorage(new Storage\AccessTokenStorage);
$server->setClientStorage(new Storage\ClientStorage);
$server->setScopeStorage(new Storage\ScopeStorage);
$server->setAuthCodeStorage(new Storage\AuthCodeStorage);
$authCodeGrant = new \League\OAuth2\Server\Grant\AuthCodeGrant();
$server->addGrantType($authCodeGrant);
答案 0 :(得分:1)
您使用的库需要实现自己的存储类,请参阅http://oauth2.thephpleague.com/implementing-storage-interfaces/。您使用的类名来自使用Capsule作为其存储后端的示例实现https://github.com/thephpleague/oauth2-server/tree/master/examples/relational/Storage。如果您想在后端使用Capsule,则需要下载这些示例实现类并安装https://github.com/illuminate/database。