通过Android的AccountManager获取Microsoft Exchange身份验证令牌

时间:2012-05-29 17:16:59

标签: android authentication exchange-server single-sign-on activesync

我正在开发一个可以连接到SSL的php webservice的Android 3.0程序(以JSON输出数据,我可以修改服务器)。连接到此服务的平板电脑具有公司Microsoft ActiveSync(Exchange 2010)帐户,并且只有该帐户(没有Google帐户,FB等)。我想编写一个程序,可以使用平板电脑android.accounts.AccountManager中保存的凭据在该PHP Web服务上发出安全请求。我尝试了一些谷歌示例,但我认为问题在于我使用该行: AccountManagerFuture<Bundle> data = am.getAuthToken(b, "JWT", options, this, ota, null); 应用程序挂起,我没有结果。 实际上,在OnTokenAcquired类的任何一行设置断点都不会做任何事情。 AKA OnTokenRequired永远不会被执行

有任何建议或指示吗?我相信这可能有助于获得企业Android客户端软件

import android.accounts.Account;
import android.accounts.AccountManager;
import android.accounts.AccountManagerFuture;
import android.app.Activity;
import android.os.Bundle;
import android.widget.EditText;
public class AcctestActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        AccountManager am = AccountManager.get(this);
        EditText et = (EditText) findViewById(R.id.editText1);
        OnTokenAcquired ota = new OnTokenAcquired(et);
        Account exchange = null;
        Bundle options = new Bundle();
        for(Account a : am.getAccounts()){
              if(a.type.equals("com.android.exchange") && a.name.endsWith("@domain.com"))
                     exchange = a;
        }
        AccountManagerFuture<Bundle> data = am.getAuthToken(exchange, "JWT", options, this, ota, null);
    }
}

import android.accounts.AccountManager;
import android.accounts.AccountManagerCallback;
import android.accounts.AccountManagerFuture;
import android.accounts.AuthenticatorException;
import android.accounts.OperationCanceledException;
import android.os.Bundle;
import android.widget.EditText;
import android.widget.Toast;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
public class OnTokenAcquired implements AccountManagerCallback<Bundle> {
       private EditText et;
       public OnTokenAcquired(EditText et){
              this.et = et;
       }
       public void run(AccountManagerFuture<Bundle> result) {
              Bundle bundle;
              try {
                     Toast.makeText(null, "Start!", Toast.LENGTH_LONG).show();
                     bundle = result.getResult(1, TimeUnit.SECONDS);
                     String token = bundle.getString(AccountManager.KEY_AUTHTOKEN);                         et.append("\nToken: " + token);
                     Toast.makeText(null, token, Toast.LENGTH_LONG).show();
              } catch (OperationCanceledException e) {
                     e.printStackTrace();
              } catch (AuthenticatorException e) {
                     e.printStackTrace();
              } catch (IOException e) {
                     e.printStackTrace();
              }            
       }
}

2 个答案:

答案 0 :(得分:0)

您必须为Exchange帐户传递正确的令牌类型。我不知道它是什么,但我怀疑它会'测试'。首先研究适当的令牌类型(如果支持)。否则你的代码看起来不错。如何使用令牌向Exchange进行身份验证是另一回事。

答案 1 :(得分:0)

经过几个小时的研究,我发现了这段代码:

public Bundle  getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle loginOptions) throws NetworkErrorException {
     return null;
}

这意味着,android exchange Authenticator不提供基于令牌的Exchange-Server身份验证...