Home
last modified time | relevance | path

Searched refs:step2_exchange (Results 1 – 10 of 10) sorted by relevance

/external/python/oauth2client/tests/
Dtest_tools.py64 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(
Dtest_client.py1840 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/
Doauth2_for_devices.py27 credentials = flow.step2_exchange(device_flow_info=flow_info)
/external/python/oauth2client/tests/contrib/django_util/
Dtest_views.py173 flow.step2_exchange = mock.Mock()
206 flow.step2_exchange = local_throws
/external/python/oauth2client/oauth2client/
Dtools.py243 credential = flow.step2_exchange(code, http=http)
Dclient.py1683 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/
Dviews.py144 credentials = flow.step2_exchange(code)
/external/python/oauth2client/oauth2client/contrib/
Dflask_util.py420 credentials = flow.step2_exchange(code)
Dappengine.py791 credentials = decorator.flow.step2_exchange(
/external/python/oauth2client/
DCHANGELOG.md38 * 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`,