简体   繁体   English

HWIOauthBundle - Facebook登录 - Symfony3

[英]HWIOauthBundle - Facebook Login - Symfony3

I had implemented HWIOauthBundle + FOSUserBundle into my app, and it's working, partially. 我已经将HWIOauthBundle + FOSUserBundle实现到我的应用程序中,部分工作正常。

Login is working perfectly with and without facebook but, if I login normally with a user that doesn't exists or with a wrong password, it will redirect me to /connect route (because of HWIOauthBundle). 使用和不使用facebook时,登录工作正常,但如果我使用不存在或密码错误的用户正常登录,则会将我重定向到/ connect route(因为HWIOauthBundle)。

How can I solve this problem? 我怎么解决这个问题? If something is wrong, to see what /login_check from FOSUserBundle is returning. 如果出现问题,请查看FOSUserBundle返回的/ login_check。 I don't want to login with facebook. 我不想用facebook登录。

My security.yml code: 我的security.yml代码:

# To get started with security, check out the documentation:
# http://symfony.com/doc/current/book/security.html
security:
    encoders:
        FOS\UserBundle\Model\UserInterface: bcrypt

    role_hierarchy:
        ROLE_ADMIN:       ROLE_USER
        ROLE_SUPER_ADMIN: ROLE_ADMIN

    providers:
        fos_userbundle:
            id: fos_user.user_provider.username_email

    firewalls:
        # disables authentication for assets and the profiler, adapt it according to your needs
        dev:
            pattern: ^/(_(profiler|wdt)|css|images|js)/
            security: false

        main:
            pattern: ^/
            form_login:
                provider: fos_userbundle
                csrf_token_generator: security.csrf.token_manager

            oauth:
                resource_owners:
                    facebook: '/login'
                login_path: /connect
                failure_path: /connect

                oauth_user_provider:
                    service: hwi_oauth.user.provider.fosub_bridge
            logout: true
            anonymous: true
            remember_me:
                secret:   '%secret%'
                lifetime: 604800 # 1 week in seconds
                path:     /
                # by default, the feature is enabled by checking a
                # checkbox in the login form (see below), uncomment the
                # following line to always enable it.
                #always_remember_me: true


    access_control:
        - { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/register$, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/resetting$, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/admin, roles: ROLE_ADMIN }
        - { path: ^/shipment, roles: ROLE_USER }

My routing.yml code: 我的routing.yml代码:

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

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

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

facebook_login:
    path: /login/check-facebook

# main login.
AppBundle:
    resource: "@AppBundle/Controller/"
    type:     annotation

FrontendBundle:
    resource: "@FrontendBundle/Controller/"
    type:     annotation

FOSUserBundle:
    resource: "@FOSUserBundle/Resources/config/routing/all.xml"

FOSMessageBundle:
    resource: "@FOSMessageBundle/Resources/config/routing.xml"
    prefix:   /messenger

MyDinxxUserBundle:
    resource: "@UserBundle/Controller/"
    type:     annotation

Please try to change the facebook path from '/login' to '/login/check-facebook' in security.yml. 请尝试在security.yml中将facebook路径从'/ login'更改为'/ login / check-facebook'。

oauth:
    resource_owners:
        facebook: '/login/check-facebook'

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM