Android
Android Authenticator
Поиск…
Основная служба проверки подлинности учетной записи
Система аутентификации учетной записи Android может использоваться для аутентификации клиента с удаленного сервера. Требуется три части информации:
- Служба, инициированная
android.accounts.AccountAuthenticator
. Его методonBind
должен возвращать подклассAbstractAccountAuthenticator
. - Активность для запроса пользователю учетных данных (активность входа)
- Файл ресурсов xml для описания учетной записи
1. Услуга:
В AndroidManifest.xml укажите следующие разрешения:
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
Объявите службу в файле манифеста:
<service android:name="com.example.MyAuthenticationService">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
Обратите внимание, что android.accounts.AccountAuthenticator
включен в тег intent-filter
объекта. Ресурс xml (именованный authenticator
здесь) указан в теге meta-data
.
Класс обслуживания:
public class MyAuthenticationService extends Service {
private static final Object lock = new Object();
private MyAuthenticator mAuthenticator;
public MyAuthenticationService() {
super();
}
@Override
public void onCreate() {
super.onCreate();
synchronized (lock) {
if (mAuthenticator == null) {
mAuthenticator = new MyAuthenticator(this);
}
}
}
@Override
public IBinder onBind(Intent intent) {
return mAuthenticator.getIBinder();
}
}
2. Ресурс xml:
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="com.example.account"
android:icon="@drawable/appicon"
android:smallIcon="@drawable/appicon"
android:label="@string/app_name" />
Не назначьте строку для android:label
или назначьте недостающие чертежи. Он сработает без предупреждения.
3. Расширьте класс AbstractAccountAuthenticator:
public class MyAuthenticator extends AbstractAccountAuthenticator {
private Context mContext;
public MyAuthenticator(Context context) {
super(context);
mContext = context;
}
@Override
public Bundle addAccount(AccountAuthenticatorResponse response,
String accountType,
String authTokenType,
String[] requiredFeatures,
Bundle options) throws NetworkErrorException {
Intent intent = new Intent(mContext, LoginActivity.class);
intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);
Bundle bundle = new Bundle();
bundle.putParcelable(AccountManager.KEY_INTENT, intent);
return bundle;
}
@Override
public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options) throws NetworkErrorException {
return null;
}
@Override
public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
return null;
}
@Override
public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) throws NetworkErrorException {
return null;
}
@Override
public String getAuthTokenLabel(String authTokenType) {
return null;
}
@Override
public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features) throws NetworkErrorException {
return null;
}
@Override
public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) throws NetworkErrorException {
return null;
}
}
Метод addAccount()
в классе AbstractAccountAuthenticator
важен, поскольку этот метод вызывается при добавлении учетной записи с экрана «Добавить учетную запись» в настройках. AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE
важен, так как он будет включать объект AccountAuthenticatorResponse, который необходим для возврата ключей учетной записи при успешной проверке пользователя.