Hwioauth失败登录引用路径

时间:2015-03-03 14:50:20

标签: symfony hwioauthbundle

在hwi_oauth中,我可以设置param以及失败重定向路径。我想重定向到referer。我可以在hwi中设置它还是必须创建failure_handler

1 个答案:

答案 0 :(得分:0)

failure_handler是必需的。

例如:

<?php

class OAuthFailureHandler implements AuthenticationFailureHandlerInterface {

    public function onAuthenticationFailure( Request $request, AuthenticationException $exception) {

        if ( !$exception instanceof AccountNotLinkedException ) {
            throw $exception;
        }
}