1

Trying to use HWIOAuthBundle

No route found for "GET /connect"
404 Not Found - NotFoundHttpException
1 linked Exception: ResourceNotFoundException »

https://gist.github.com/idlweb/6232475

Pierre de LESPINAY
  • 44,700
  • 57
  • 210
  • 307
Zelig74
  • 47
  • 6

1 Answers1

0

try to import more bundle routes into your app routing, not only the redirect.xml:

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

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

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