私はこれらの2つのドキュメントに従いました: https://github.com/hwi/HWIOAuthBundle/tree/master/Resources/doc (HWIOAuth用) https://gist.github.com/danvbe/4476697 (HWIOAuthをFOSUBと統合するため)
そして、私はこのエラーが発生します
ServiceNotFoundException: 存在しないサービス "hwi_oauth.resource_ownermap.main" を要求しました。
stackoverflow で同じエラーを見つけました: Symfony2.3 - HWIOAuthBundle Config ServiceNotFoundException
しかし、config.yml の ressource_owners は適切に構成されていると思います。
はい、これ :
fos_user:
db_driver: orm
firewall_name: main
user_class: MyProject\UserBundle\Entity\User
registration:
form:
type: myproject_user_registration
confirmation:
enabled: true
template: FOSUserBundle:Registration:email.txt.twig
hwi_oauth:
firewall_name: main
fosub:
username_iterations: 30
properties:
yahoo: yahoo_id
google: google_id
windows_live: windows_live_id
linkedin: linkedin_id
resource_owners:
any_name:
type: yahoo
client_id: X
client_secret: X
any_name:
type: google
client_id: X
client_secret: X
scope: X
any_name:
type: windows_live
client_id: X
client_secret: X
any_name:
type: linkedin
client_id: X
client_secret: X
scope: X
X の代わりに適切な値があります ("" がなければ、これを追加する必要があるかどうかわかりません)。