Tagged Questions
0
votes
0answers
22 views
How can I get acces token from google auth token?
I have created an application which asks for permission to use google account but now I have auth token and auth account, but I do not know how can I get with these variables data from user. For ...
2
votes
1answer
67 views
Getting invalid Authtoken for gmail login?
In my android application I have created a gmail login.The user can login with the gmail credentials already in the phone.The problem is that I am not getting a valid token in android Gingerbread ...
2
votes
0answers
52 views
How to create own authTokenType in Android?
I want to create an authentication token to my account. I create own account type, and add my account to the device
I create an app, that make accounts whit my account type. I create another app, that ...
2
votes
1answer
239 views
How can I get an auth token for multiple scopes using android's account manager
I need to get an oauth token from within an android app that will allow me to connect to my appengine application as well as be able to send emails from the user's account. The problem I've run into ...
1
vote
1answer
187 views
How to generate correct auth tokens
I am trying to use the Android account manager for creating my app's own account, so I have studied the example provided in the SDK.
However, I have a little problem understanding how I have to manage ...
1
vote
1answer
194 views
Google Subtokens for Android App
I am developing an Android app that asks for permission to view my Google profile and email. I allow the app permission to view it, but the "Authorized Apps and Sites" section of my Google account ...
0
votes
1answer
247 views
Invalid Accountmanager auth token
Hello I'm trying to validate the token I've created with the accountManager from my php server but I keep getting the error "invalid token" from google server on my php server... Here is the code :
...
3
votes
2answers
684 views
Accountmanager Auth token whithout clientID and clientSecret
Hello I'm retrieving a auth token on my app with that code :
private String updateToken(boolean invalidateToken, int accountref) {
String authToken = "null";
try {
AccountManager am = ...
0
votes
0answers
95 views
Youtube-api Android get subscriptions
i have been trying to het user subscriptions for a while and atm i'm blocked... I have the following code:
url = new ...
2
votes
0answers
88 views
Android: Authorizing myself to 3rd party web-site
I am developing a client-server app, which needs to access some database on the server (say, something like http://www.someserver.com/).
How can I authorize user on the server from Android phone ...
1
vote
0answers
161 views
use AuthToken from AccountManager for Google Client API requests
I want access the Google Drive account from a user. I get a token from the AccountManager on Android.
I added the Client Library and Drive Library from Google to my project and want to send requests ...
5
votes
1answer
154 views
C2DM Auth Error
I have an C2DM based application, which works fine, but recently I am getting Auth Error
although I am getting the RID(Registration ID) and the message is being sent.
Recently I read that Client ...
1
vote
0answers
78 views
How to android receives authToken
Where to find the source code for getting AuthToken.
In the folder with the android source (core/java/android/accounts), I found the code only works stored in a database and extracts from it.
But I am ...
0
votes
4answers
769 views
is it possible to get the public facebook wall feeds when not logged in?
I'm accually asking is it possible to get public wall feeds without auth token?
If I'm not logged in to facebook, I can still see the public posts ,this is a good example : ...
5
votes
1answer
235 views
single google account authtoken for Multiple Google Data API in Android
Hello android enthusiast, i'm struggling to find solution to this problem. I'm planning to access the user's Google Calendar and Google Documents,(using google-api-java-client-v1.6.0). I can access ...
1
vote
1answer
511 views
Google AuthToken Validity for C2DM Services
I am Developing a web server which sends push messages automatically to my android application whenever I add new data on web server. But, for sending the push message through C2DM server we need to ...
15
votes
1answer
2k views
How to make AccountManager (authtoken) and OpenID work together (without AppEngine)?
I am making an Android app which should be able to get data from a web service (which is not part of GAE). Users are able to log in to web service through their browser by using OpenId (only Google ...
2
votes
1answer
874 views
AccountManager blockingGetAuthToken gets stuck
I've been using the SampleSyncAdapter
as a base to create my own SyncAdapter. It seems to work well to add a new account, but once I want to get the authtoken with ...
1
vote
1answer
757 views
How to get C2DM auth token?
I'm working on android c2dm for a while.
Last week, I got registration id in the emulator's logcat, but I still can not get auth token.
And there are some error & warning messages in my logcat:
...
7
votes
4answers
4k views
How to retrieve an Facebook-AuthToken from the accounts saved on Android
I'm trying to retrieve the AuthToken for Facebook (saved by Facebook for Android) by using the following piece of code.
AccountManager am = AccountManager.get(this);
Account[] accounts = ...
