Home
last modified time | relevance | path

Searched refs:token_response (Results 1 – 7 of 7) sorted by relevance

/external/python/oauth2client/tests/
Dtest_file.py129 token_response = {'access_token': access_token, 'expires_in': 3600}
131 ({'status': '200'}, json.dumps(token_response).encode('utf-8')),
152 token_response = {'access_token': access_token, 'expires_in': 3600}
159 json.dumps(token_response).encode('utf-8')),
196 token_response = {'access_token': valid_access_token,
204 json.dumps(token_response).encode('utf-8')),
Dtest_client.py900 token_response = {'access_token': '1/3w', 'expires_in': 3600}
903 ({'status': '200'}, json.dumps(token_response).encode(
911 self.assertEqual(token_response, self.credentials.token_response)
924 token_response = {'access_token': '1/3w', 'expires_in': 3600}
925 encoded_response = json.dumps(token_response).encode('utf-8')
947 self.assertEqual(None, self.credentials.token_response)
974 self.assertEqual(None, self.credentials.token_response)
1055 self.credentials.token_response = 'foobar'
1058 self.assertEqual('foobar', instance.token_response)
1131 self.assertEqual(token_response_first, credentials.token_response)
[all …]
Dtest_service_account.py315 credentials.token_response)
331 self.assertEqual(token_response_first, credentials.token_response)
351 credentials.token_response)
/external/python/oauth2client/oauth2client/
Dclient.py472 id_token=None, token_response=None, scopes=None, argument
515 self.token_response = token_response
643 token_response=data.get('token_response', None),
801 self.token_response = d
2050 token_response=d, scopes=self.scope,
/external/python/oauth2client/tests/contrib/
Dtest_multiprocess_file_storage.py67 token_response = json.dumps({
72 ({'status': '200'}, token_response),
/external/python/oauth2client/oauth2client/contrib/
Dappengine.py805 credentials.token_response):
806 resp_json = json.dumps(credentials.token_response)
/external/python/oauth2client/
DCHANGELOG.md249 `token_response` field.