我正在使用 Alex Bilbie 提供的 phpleague 库开发一个 oAuth 2.0 服务器。但是,在初始化授权服务器之后,当我声明存储类时,它会引发以下错误。
“致命错误:找不到类 'Storage\SessionStorage'”
请帮我解决这个问题。我在这里阅读了您关于此问题的帖子:-指导我使用 phpleague 库实现 Oauth2 PHP 服务器
请让我知道如何实现存储类。我当前的代码:
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);