HWIOAuthBundle问题的第一个例子

时间:2015-06-17 10:52:40

标签: php symfony hwioauthbundle

我正在与HWIOAuthBundle作战。 我试图让它与Twitter Oauth合作,但我不确定我是否走在正确的道路上,如果这个问题看似微不足道,我会道歉。

我遵循文档中报告的一些说明。

我有这个配置:

config.yml

hwi_oauth:
    firewall_name: secured_area;
    resource_owners:
      twitter:
        type: twitter
        client_id:      <consumer_key>
        client_secret:  <consumer-secret>



routing.yml

hwi_oauth_redirect:
    resource: "@HWIOAuthBundle/Resources/config/routing/redirect.xml"
    prefix:   /connect

hwi_oauth_login:
    resource: "@HWIOAuthBundle/Resources/config/routing/login.xml"
    prefix:   /login




security.yml
    firewalls:
       ...
        secured_area:
            anonymous: ~
            oauth:
                resource_owners:
                    twitter:            "/login/check-twitter"
                login_path:        /login
                use_forward:       false
                failure_path:      /login

                oauth_user_provider:
                    service: hwi_oauth.user.provider


    access_control:
        - { path: ^/login, roles: IS_AUTHENTICATED_ANONYMOUSLY }

在oauth_user_provider中我明白我可以使用文档页面https://github.com/hwi/HWIOAuthBundle/blob/master/Resources/doc/3-configuring_the_security_layer.md中报告的三种默认实现之一

如果我尝试访问此配置所涵盖的页面,我会收到:

CheckExceptionOnInvalidReferenceBehaviorPass.php第58行中的

ServiceNotFoundException:服务“hwi_oauth.security.oauth_utils”依赖于不存在的服务“hwi_oauth.resource_ownermap.secured_area;”。

请问有人能告诉我这个错误是由什么引起的吗?我在oauth_user_provider中指定的服务是不是很糟糕,而且我误解了有关实现OAuthAwareUserProviderInterface的服务的3个默认实现的文档?

1 个答案:

答案 0 :(得分:2)

这是一个错字。它位于config.yml,&#34; firewall_name:secured_area;&#34;。 半天下午,我已经失去了一个该死的&#34 ;;&#34;

@moderators:如果您认为这是一个零社区贡献问题/答案,请随时删除此问题。