FOSOAuthServerBundle + Symfony 4配置-无法导入路由

时间:2018-07-14 11:40:14

标签: symfony fosoauthserverbundle

我正在尝试根据官方文档配置Bundle,但是当我添加路线时(如文档中所述)

  

在app / config / routing.yml中导入routing.yml配置文件:   fos_oauth_server_token:       资源:“ @ FOSOAuthServerBundle / Resources / config / routing / token.xml”   fos_oauth_server_authorize:       资源:“ @ FOSOAuthServerBundle / Resources / config / routing / authorize.xml”

我收到一个错误:

  

没有扩展能够加载“ fos_oauth_server_token”的配置(在/var/app/ondeck/config/packages/routing.yaml中)。在/ var / app / ondeck / config / packages中查找名称空间“ fos_oauth_server_token”,找到“框架”,“ twig”,“安全性”,“ nelmio_cors”,“ doctrine_cache”,“ doctrine”,“ api_platform”,“ fos_oauth_server” /routing.yaml(已加载到资源“ /var/app/ondeck/config/packages/routing.yaml”中)。

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

您将路线导入到错误的文件中。

此处的config/packages/routing.yaml文件用于路由器配置,而不是用于定义路由。

您应该有一个config/routes目录,在此处导入FOSOAuthServerBundle路由。