Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A good tutorial for using AccountManager in Android? [closed]

Does anyone know of any good tutorials for using AccountManager in android, basically what I'm trying to do is request a OAuth2 token to use with a google api, any suggestions would be appreciated :)

like image 335
William L. Avatar asked Jun 13 '12 22:06

William L.


People also ask

What is Android AccountManager?

android.accounts.AccountManager. This class provides access to a centralized registry of the user's online accounts. The user enters credentials (username and password) once per account, granting applications access to online resources with "one-click" approval.

Is Android account manager secure?

Using an AccountManager to store credentials is a much secure way than storing in a file or a SQL DB. A file can be retrieved by any other app unlike via AccountManager Android will enforce that only your app will be able to access to the key.

What is Account Manager app?

Accounts Manager app can be used to track your daily income and expense transaction as per your need. Easy Entries: Account Manager App is easy in adding, deleting and canceling a credit or debit entry.


1 Answers

http://developer.android.com/training/id-auth/authenticate.html

Doesn't get much more official than this

like image 149
pjulien Avatar answered Oct 08 '22 18:10

pjulien