खोज…


कस्टम खातों / प्रमाणीकरण को समझना

निम्नलिखित उदाहरण प्रमुख अवधारणाओं और बुनियादी कंकाल सेटअप की उच्च स्तरीय कवरेज है: -

  1. उपयोगकर्ता से क्रेडेंशियल एकत्र करता है (आमतौर पर आपके द्वारा बनाई गई लॉगिन स्क्रीन से)
  2. सर्वर के साथ प्रमाणिकता को प्रमाणित करता है (कस्टम प्रमाणीकरण संग्रहीत करता है)
  3. डिवाइस पर क्रेडेंशियल्स संग्रहीत करता है

एक 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.
  }
}

एक सेवा बनाएँ (खाता प्रबंधक ढांचा सेवा इंटरफ़ेस के माध्यम से विस्तारित 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 में परिवर्तन (खाता प्रबंधक के माध्यम से इसे प्रयोग करने योग्य बनाने के लिए उपरोक्त सभी अवधारणाओं को एक साथ लाएं)

<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