Android
アカウントとAccountManager
サーチ…
カスタムアカウント/認証について
次の例は、主要コンセプトと基本的な骨格の設定を高水準でカバーしています。
- ユーザーからの資格情報を収集します(通常は作成したログイン画面から)
- サーバーで資格情報を認証する(カスタム認証を格納する)
- デバイスに資格情報を格納します。
AbstractAccountAuthenticatorを拡張する (主に認証の取得と再認証に使用される)
public class AccountAuthenticator extends AbstractAccountAuthenticator {
@Override
public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
String authTokenType, String[] requiredFeatures, Bundle options) {
//intent to start the login activity
}
@Override
public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options) {
}
@Override
public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
}
@Override
public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType,
Bundle options) throws NetworkErrorException {
//retrieve authentication tokens from account manager storage or custom storage or re-authenticate old tokens and return new ones
}
@Override
public String getAuthTokenLabel(String authTokenType) {
}
@Override
public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features)
throws NetworkErrorException {
//check whether the account supports certain features
}
@Override
public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, String authTokenType,
Bundle options) {
//when the user's session has expired or requires their previously available credentials to be updated, here is the function to do it.
}
}
サービスを作成します (Account Managerフレームワークは、サービスインタフェースを介して拡張AbstractAccountAuthenticatorに接続します)
public class AuthenticatorService extends Service {
private AccountAuthenticator authenticator;
@Override
public void onCreate(){
authenticator = new AccountAuthenticator(this);
}
@Override
public IBinder onBind(Intent intent) {
return authenticator.getIBinder();
}
}
オーセンティケータXML設定 (アカウントマネージャフレームワークが必要です。これはAndroidの[設定] - > [アカウント]に表示されます)
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="rename.with.your.applicationid"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:smallIcon="@drawable/app_icon" />
AndroidManifest.xmlの変更 (上記のすべての概念をまとめてAccountManagerを使用してプログラムで使用できるようにする)
<application
...>
<service
android:name=".authenticator.AccountAuthenticatorService"
android:exported="false"
android:process=":authentication">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator"/>
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator"/>
</service>
</application>
次の例では、この設定を使用する方法について説明します。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow