Com.google.gdata.client.googleservice.setusertoken(android.accounts.accountmanager.getauthtoken(???))
I've got working code that uses the gdata to retrieve feeds from my user's Google Finance portfolios, but I had to use setUserCredentials(username,password). What I'd like to do is
Solution 1:
AccountManager.blockingGetAuthToken()
is the correct call. Pass it an Account
, and an String authTokenType
-- In your case, "android"
or "finance"
, your pick (the values of the strings it's looking for are not clearly documented).
The easy way to obtain an account is to do all your client comms as part of the onPerformSync()
call on a class that implmenents a Sync Adapter. You can find a number of tutorials on getting a SyncAdapter set up. As part of getting your SyncAdapter going, you'll end up with a mess of permissions, probably like the following or so:
<uses-permissionandroid:name="android.permission.GET_ACCOUNTS" /><uses-permissionandroid:name="android.permission.USE_CREDENTIALS" /><uses-permissionandroid:name="android.permission.WRITE_SETTINGS" /><uses-permissionandroid:name="android.permission.WRITE_SECURE_SETTINGS" /><uses-permissionandroid:name="android.permission.READ_SYNC_STATS" /><uses-permissionandroid:name="android.permission.READ_SYNC_SETTINGS" /><uses-permissionandroid:name="android.permission.WRITE_SYNC_SETTINGS" /><uses-permissionandroid:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /><uses-permissionandroid:name="com.google.android.googleapps.permission.GOOGLE_AUTH.finance" />
Those last two, again, sort of tricksy, dug them out of who knows where.
Post a Comment for "Com.google.gdata.client.googleservice.setusertoken(android.accounts.accountmanager.getauthtoken(???))"