Suche…


Basic Account Authenticator-Dienst

Das Android Account Authenticator-System kann dazu verwendet werden, den Client bei einem Remote-Server zu authentifizieren. Drei Informationen sind erforderlich:

  • Ein Dienst, ausgelöst durch den android.accounts.AccountAuthenticator . Die onBind Methode sollte eine Unterklasse von AbstractAccountAuthenticator .
  • Eine Aktivität, um den Benutzer zur Eingabe von Anmeldeinformationen aufzufordern (Login-Aktivität)
  • Eine XML-Ressourcendatei zur Beschreibung des Kontos

1. Der Dienst:

Fügen Sie die folgenden Berechtigungen in Ihre AndroidManifest.xml ein:

<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" />

Deklarieren Sie den Dienst in der Manifestdatei:

<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>

Beachten Sie, dass der android.accounts.AccountAuthenticator im intent-filter Tag enthalten ist. Die XML-Ressource (hier als authenticator ) ist im meta-data Tag angegeben.

Die Serviceklasse:

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. Die XML-Ressource:

<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" />

Weisen Sie dem android:label keine Zeichenfolge zu android:label fehlende Zeichen oder weisen Sie ihnen fehlende Zeichen zu. Es wird ohne Warnung abstürzen.

3. Erweitern Sie die AbstractAccountAuthenticator-Klasse:

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;
    }
}

Die addAccount() -Methode in der AbstractAccountAuthenticator Klasse ist wichtig, da diese Methode aufgerufen wird, wenn Sie unter "Einstellungen" ein Konto im Bildschirm "Konto hinzufügen" hinzufügen. AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE ist wichtig, da es das AccountAuthenticatorResponse-Objekt enthält, das erforderlich ist, um die Kontoschlüssel bei erfolgreicher Benutzerverifizierung zurückzugeben.



Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow