2

我正在关注关于在https://developer.ibm.com/mobilefirstplatform/documentation/getting-started-7-0/authentication-security/adapter-based-authentication/上实现基于适配器的身份验证的教程

isCustomReponse方法总是返回 false,因为“authRequired”不在响应中。如果我做错了什么,请帮助我。

适配器代码

function onAuthRequired(headers, errorMessage){
    errorMessage = errorMessage ? errorMessage : null;

    return {
        authRequired: true,
        errorMessage: errorMessage
    };
}

function submitAuthentication(username, password){
  // if (username==="user" && password === "user"){

    var userIdentity = {
        userId: username,
        displayName: username,
        attributes: {
          foo: "bar"
        }
    };

    WL.Server.setActiveUser("SingleStepAuthRealm", userIdentity);

    return {
      authRequired: false
    };
  // }

  // return onAuthRequired(null, "Invalid login credentials");
}


function onLogout(){
    WL.Logger.debug("Logged out");
}

AuthenticationConfig.xml

<?xml version="1.0" encoding="UTF-8"?>
<tns:loginConfiguration xmlns:tns="http://www.worklight.com/auth/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

        <!-- Licensed Materials - Property of IBM
             5725-I43 (C) Copyright IBM Corp. 2006, 2013. All Rights Reserved.
             US Government Users Restricted Rights - Use, duplication or
             disclosure restricted by GSA ADP Schedule Contract with IBM Corp. -->  

     <staticResources>
     <!--  
            <resource id="logUploadServlet" securityTest="LogUploadServlet">
            <urlPatterns>/apps/services/loguploader*</urlPatterns>
        </resource>
        -->
        <resource id="subscribeServlet" securityTest="SubscribeServlet">
            <urlPatterns>/subscribeSMS*;/receiveSMS*;/ussd*</urlPatterns>
        </resource>

    </staticResources> 


     <securityTests>

        <customSecurityTest name="SubscribeServlet">
            <test realm="SubscribeServlet" isInternalUserID="true"/>
        </customSecurityTest>   

        <customSecurityTest name="SingleStepAuthAdapter-securityTest">
            <test isInternalUserID="true" realm="SingleStepAuthRealm"/>
        </customSecurityTest>



    </securityTests> 

    <realms>

    <realm loginModule="AuthLoginModule" name="SingleStepAuthRealm">
            <className>com.worklight.integration.auth.AdapterAuthenticator</className>
            <parameter name="login-function" value="SingleStepAuthAdapter.onAuthRequired"/>
            <parameter name="logout-function" value="SingleStepAuthAdapter.onLogout"/>
        </realm>
        <realm name="SampleAppRealm" loginModule="StrongDummy">
            <className>com.worklight.core.auth.ext.FormBasedAuthenticator</className>
        </realm>

        <realm name="SubscribeServlet" loginModule="rejectAll">
            <className>com.worklight.core.auth.ext.HeaderAuthenticator</className>          
        </realm>

    </realms>

    <loginModules>
        <loginModule name="AuthLoginModule">
            <className>com.worklight.core.auth.ext.NonValidatingLoginModule</className>
        </loginModule>
        <loginModule name="StrongDummy" expirationInSeconds="-1">
            <className>com.worklight.core.auth.ext.NonValidatingLoginModule</className>
        </loginModule>

        <loginModule name="requireLogin" expirationInSeconds="-1">
            <className>com.worklight.core.auth.ext.SingleIdentityLoginModule</className>
        </loginModule>

        <loginModule name="rejectAll">
            <className>com.worklight.core.auth.ext.RejectingLoginModule</className>
        </loginModule>

    </loginModules>

</tns:loginConfiguration>

安卓代码

public void IBMPushNotification() {

  try {
    client.registerChallengeHandler(newLoginChallengeHandler(realm,"test"));
    client.connect(new MyConnectionListener());
  } catch (Exception ex) {
    ex.printStackTrace();
  }
}

登录挑战处理程序

private LoginChallengeHandler challengeHandler;
private String realm = "SingleStepAuthRealm";


public class LoginChallengeHandler extends ChallengeHandler{

  private String userName;

    public LoginChallengeHandler(String realm,String user) {
      super(realm);
      userName = user;
    }

    @Override
    public boolean isCustomResponse(WLResponse wlResponse) {
      try {
        if(wlResponse!= null && wlResponse.getResponseJSON()!=null &&
            wlResponse.getResponseJSON().isNull("authRequired") != true &&
            wlResponse.getResponseJSON().getBoolean("authRequired") == true){

          return true;
        }
      } catch (Exception e) {
          e.printStackTrace();
      }

      return false;
    }

    @Override
    public void handleChallenge(WLResponse wlResponse) {
      submitLogin(userName,"dummy");
    }

    @Override
    public void onSuccess(WLResponse wlResponse) {

      if(isCustomResponse(wlResponse)) {
        handleChallenge(wlResponse);
      } else {
        submitSuccess(wlResponse);
      }
    }

    @Override
    public void onFailure(WLFailResponse wlFailResponse) {    
    }

    public void submitLogin(String userName, String password){
      Object[] parameters = new Object[]{userName, password};
      WLProcedureInvocationData invocationData = new WLProcedureInvocationData("SingleStepAuthAdapter", "submitAuthentication");
      invocationData.setParameters(parameters);
      WLRequestOptions options = new WLRequestOptions();
      options.setTimeout(30000);
      submitAdapterAuthentication(invocationData, options);

    }
  }
4

1 回答 1

1

在未设置 authRequired 的情况下多次调用挑战处理程序是正常的 - 这些只是不需要身份验证时的正常服务器响应。只有当您通过访问受保护的资源触发了身份验证过程时,才会出现该 authRequired 有效负载,这反过来将导致安全子系统调用适配器的 onAuthRequired 方法。

我建议在您的 onAuthRequired 方法中添加一个跟踪语句,这将在发生这种情况时向您显示。

正如 Nathan H 所说,这里最可能的原因是您没有访问受保护的资源,因为您没有将安全测试应用于适配器过程或整个应用程序。在您正在使用的示例中,有一个受保护的 getSecretData() 过程。

于 2015-04-27T05:35:27.563 回答