使用Facebook OAuth进行Apache Shiro身份验证

时间:2014-05-21 06:30:20

标签: facebook apache authentication authorization shiro

我无法通过Facebook OAuth验证在Shiro上运行的应用程序。我真的不知道我做错了什么。基本上,我的问题是当我从Facebook获得“代码”时。我希望shiro使用该代码对其进行身份验证。 这是我的身份验证码。

FacebookToken token = null;
        try{
                org.apache.shiro.subject.Subject currentUser = SecurityUtils.getSubject();
                //currentUser.logout(); 
                //This is done to avoid temporary multiple url hit.., when the user is not logged out

                token = new FacebookToken(code);
                currentUser.login(token);  //returns true if valid 
               result =  true;
            }catch (UnknownAccountException uae) {
                log.info("There is no user with username of " + token.getPrincipal());
            } catch (IncorrectCredentialsException ice) {
                log.info("Password for account " + token.getPrincipal() + " was incorrect!");
            } catch (LockedAccountException lae) {
                log.info("The account for username " + token.getPrincipal() + " is locked.  " +
                        "Please contact your administrator to unlock it.");
            }
            // ... catch more exceptions here (maybe custom ones specific to your application?
            catch (AuthenticationException ae) {
                log.info("Authentication exception Here.");
            }

这是我的facebook令牌类:

public class FacebookToken implements AuthenticationToken {

    private static final long serialVersionUID = 1L;
    private String code;
    public FacebookToken(){

    }

    public FacebookToken(String code){
        this.code = code;
    }

    public Object getCredentials() {

        return null; //Credentials are handled by facebook 
    }

    public String getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }

    public Object getPrincipal() {
        return null; //Not known facebook does the login
    }

我拥有扩展授权领域的facebook领域。

public class FacebookRealm extends AuthorizingRealm {
    }

最后这是我的shiro.ini文件:

[main]  
#authc.loginUrl = /login
#authc.successUrl  = /hello
#logout.redirectUrl = /hello

# ------------------------  
# Database  

# Own Realm  
jdbcRealm = com.shiro.common.controller.MyCustomRealm
facebookRealm = com.facebook.login.FacebookRealm


# Sha256  
sha256Matcher = org.apache.shiro.authc.credential.Sha256CredentialsMatcher
# base64 encoding, not hex in this example:  
sha256Matcher.storedCredentialsHexEncoded = false  
sha256Matcher.hashIterations = 1024  

#Facebook Credential matcher
fbCredentialsMatcher = com.facebook.login.FacebookCredentialsMatcher 


jdbcRealm.credentialsMatcher = $sha256Matcher
facebookRealm.credentialsMatcher = $fbCredentialsMatcher


# User Query  
# default is "select password from users where username = ?"  
jdbcRealm.authenticationQuery = SELECT password, salt FROM User WHERE email = ?

# permissions  
jdbcRealm.permissionsLookupEnabled = true
jdbcRealm.userRolesQuery = select roleName from UserRole where email = ?
jdbcRealm.permissionsQuery = select permission from RolesPermission where roleName = ?

# Connection   
ds = com.mysql.jdbc.jdbc2.optional.MysqlDataSource
ds.serverName = localhost
ds.user = root
ds.password = root123
ds.databaseName = testdb
jdbcRealm.dataSource=$ds

#authc.usernameParam = email
#authc.passwordParam = password
#authc.failureKeyAttribute = shiroLoginFailure

# Use Built-in Chache Manager
builtInCacheManager = org.apache.shiro.cache.MemoryConstrainedCacheManager
securityManager.cacheManager = $builtInCacheManager

#securityManager.realms = $facebookRealm,$jdbcRealm
securityManager.realms = $facebookRealm


# -----------------------------------------------------------------------------  
[urls]  
#/hello = authc
#/login = authc
#/admin.jsp = authc, perms["admin:access"]

现在我什么时候调试并使用currentuser.login方法进入并进入内部,它会引发异常 Realm [FacebookRealm @ 52039826]不支持身份验证令牌[FacebookToken @ 132d9844]。请确保正确配置了相应的Realm实现,或者该域接受此类型的AuthenticationTokens。

请建议我,我是否正确,不是!我错过了任何配置或其他任何东西。谢谢!!

1 个答案:

答案 0 :(得分:4)

您应该使用以下方法扩展您的FacebookRealm:

@Override
public boolean supports(AuthenticationToken token) {
    return token instanceof FacebookToken;
}

或将以下行添加到您的ini:

facebookRealm.authenticationTokenClass=<realpackage>.FacebookToken