1

我正在使用 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); 
4

1 回答 1

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

于 2015-02-02T07:34:13.463 回答