Searched refs:token_response (Results 1 – 7 of 7) sorted by relevance
/external/python/oauth2client/tests/ |
D | test_file.py | 129 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')),
|
D | test_client.py | 900 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 …]
|
D | test_service_account.py | 315 credentials.token_response) 331 self.assertEqual(token_response_first, credentials.token_response) 351 credentials.token_response)
|
/external/python/oauth2client/oauth2client/ |
D | client.py | 472 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/ |
D | test_multiprocess_file_storage.py | 67 token_response = json.dumps({ 72 ({'status': '200'}, token_response),
|
/external/python/oauth2client/oauth2client/contrib/ |
D | appengine.py | 805 credentials.token_response): 806 resp_json = json.dumps(credentials.token_response)
|
/external/python/oauth2client/ |
D | CHANGELOG.md | 249 `token_response` field.
|