Searched refs:step2_exchange (Results 1 – 10 of 10) sorted by relevance
/external/python/oauth2client/tests/ |
D | test_tools.py | 64 self.flow.step2_exchange.return_value = self.credentials 85 self.flow.step2_exchange.assert_called_once_with( 102 self.flow.step2_exchange.assert_called_once_with( 110 self.flow.step2_exchange.side_effect = client.FlowExchangeError() 116 self.flow.step2_exchange.assert_called_once_with( 133 self.flow.step2_exchange.assert_called_once_with( 184 self.flow.step2_exchange.assert_called_once_with(
|
D | test_client.py | 1840 flow.step2_exchange() 1845 flow.step2_exchange(code='code', device_flow_info='dfi') 1857 self.flow.step2_exchange(code='some random code', http=http) 1866 self.flow.step2_exchange(code='some random code', http=http) 1882 self.flow.step2_exchange(code='some random code', http=http) 1891 credentials = self.flow.step2_exchange( 1921 credentials = self.flow.step2_exchange(code=binary_code, http=http) 1948 credentials = self.flow.step2_exchange(code=not_a_dict, http=http) 1972 credentials = flow.step2_exchange(code='some random code', http=http) 1986 credentials = self.flow.step2_exchange(code='some random code', [all …]
|
/external/python/oauth2client/samples/ |
D | oauth2_for_devices.py | 27 credentials = flow.step2_exchange(device_flow_info=flow_info)
|
/external/python/oauth2client/tests/contrib/django_util/ |
D | test_views.py | 173 flow.step2_exchange = mock.Mock() 206 flow.step2_exchange = local_throws
|
/external/python/oauth2client/oauth2client/ |
D | tools.py | 243 credential = flow.step2_exchange(code, http=http)
|
D | client.py | 1683 credentials = flow.step2_exchange(code, http=http) 1731 credentials = flow.step2_exchange(code, http=http) 1967 def step2_exchange(self, code=None, http=None, device_flow_info=None): member in OAuth2WebServerFlow
|
/external/python/oauth2client/oauth2client/contrib/django_util/ |
D | views.py | 144 credentials = flow.step2_exchange(code)
|
/external/python/oauth2client/oauth2client/contrib/ |
D | flask_util.py | 420 credentials = flow.step2_exchange(code)
|
D | appengine.py | 791 credentials = decorator.flow.step2_exchange(
|
/external/python/oauth2client/ |
D | CHANGELOG.md | 38 * Fix issue with Python 3 binary strings in `Flow.step2_exchange` (#446). 248 * Change `flow.step2_exchange` to preserve the raw `id_token` in the 253 * Quick bugfix for an issue with dict-like arguments to `flow.step2_exchange`,
|