我正在使用OAuth授权开发一个简单的rest API。
我按照下面的教程设置了所有内容(我从一个干净安装的symfony 3应用程序开始)
https://gist.github.com/tjamps/11d617a4b318d65ca583
在安装完所有内容后,我以以下方式更改了config.yml
fos_oauth_server:
db_driver: orm
client_class: UserBundleEntityClient
access_token_class: UserBundleEntityAccessToken
refresh_token_class: UserBundleEntityRefreshToken
auth_code_class: UserBundleEntityAuthCode
service:
user_provider: fos_user.user_provider.username_email
我还更改了安全性。yml允许登录时使用用户名和电子邮件
security:
encoders:
FOSUserBundleModelUserInterface: sha512
# http://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
providers:
in_memory:
memory: ~
fos_userbundle:
id: fos_user.user_provider.username_email
firewalls:
dev:
pattern: ^/(_(profiler|wdt)|css|images|js)/
security: false
oauth_token: # Everyone can access the access token URL.
pattern: ^/oauth/v2/token
security: false
api:
pattern: ^/ # All URLs are protected
fos_oauth: true # OAuth2 protected resource
stateless: true # Do no set session cookies
anonymous: false # Anonymous access is not allowed
现在我得到以下错误:
致命错误:未捕获异常"Symfony\Component\Debug\exception\ContextErrorException">,消息为"可捕获的致命错误:传递给FOS\OAuthServerBundle\Storage\OAuthStorage::__construct()的参数5必须实现接口Symfony\coomponent\Security\Core\UserProviderInterface,i给出了FOS\UserBundle\Doctrine\UserManager的实例,在第1614行的/Users/%username/rai api/var/cache/prod/appProdProjectContainer.php中调用,并在第80行的/Uusers/%username/lai api/vvendor/friendsofsymfony/oauth-server bundle/Storage/OAuthStorage.php中定义
我正在使用symfony 3.2
首先,在进行更改后,每当您看到这行时
var/cache/prod/appProdProjectContainer.php
请始终考虑删除var/cache/prod文件夹,并根据缓存设置和/或更改的文件重新启动apache。
或者,只需使用开发环境,因为它旨在使您的开发生活更轻松,尽管速度要慢得多。