I am in a Android project of creating a Google Reader client. I with to use built in account credential and to be as close of the official google reader app on that point.
I'm struggling in a problem since a week and can't find out how to solve it. I managed to get an Auth Token from AccountManager using authtokentype "reader". The token is of the form
DQAAAOcAAACJAmAkHEpPnaP-v7HxPYyz3XtCNwTiFLUsqYXfLQvCko4AqUyY213U81fXeNZC3VVArBaEsJJFcRXDmczrEhDquxiJiWSp7eM9T8Bs2VV3uqFwE7irrfarKyBH-oVn2nZxKc3wcugqa7k3p4KCotz48cQRslDQhSZj1AK4hxqO2eu5X8lutffRCPjA6kmgmXhkYA4RuTCxVXbZr0E_ytQteX2VzOlPbqrZ7QD7NiqbeJYODE3pk4BNjHTWtgXAr3J0U7LMdtRh9aC9AJoBp1SNl3jptyzqFfeEjWtVTBQlKtn40vyzMDt0sZoSIaSPquc
Now that I have the token, how do I login with the unofficial Google Reader api ? I know this java api, and found various documentation here, here and here. All of these only lay the emphasis upon Client Login with email and password. Each time I find a code sample it is of the form
token = someFunctionIAlreadyUse();
someUndocumentedUnknowPersonalFunction(token);
Am I missing a simple way ? If not where can I find a detailled way of accessing the api (in java) ?