OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:authtoken
(Results
1 - 3
of
3
) sorted by null
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java
85
// Use the account manager to request the
AuthToken
we'll need
86
// to talk to our sample server. If we don't have an
AuthToken
88
// and
AuthToken
.
89
final String
authtoken
= mAccountManager.blockingGetAuthToken(account,
local
100
updatedContacts = NetworkUtilities.syncContacts(account,
authtoken
,
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java
67
public static final String PARAM_AUTH_TOKEN = "
authtoken
";
123
String
authToken
= null;
129
authToken
= ireader.readLine().trim();
132
if ((
authToken
!= null) && (
authToken
.length() > 0)) {
134
return
authToken
;
140
Log.e(TAG, "IOException when getting
authtoken
", e);
154
* @param
authtoken
The
authtoken
stored in the AccountManager for this
161
Account account, String
authtoken
, long serverSyncState, List<RawContact> dirtyContacts
[
all
...]
/development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py
60
an
authtoken
as the only content. If auth fails, we'll send an "invalid
96
self.
authtoken
= self.request.get('
authtoken
')
102
(self.
authtoken
== BaseWebServiceHandler.ACCT_AUTH_TOKEN)):
114
request to include username and password fields. It returns
authtoken
130
request to include username and
authtoken
. If the
authtoken
is valid
Completed in 296 milliseconds