Home
last modified time | relevance | path

Searched refs:device_flow_info (Results 1 – 3 of 3) sorted by relevance

/external/python/oauth2client/samples/
Doauth2_for_devices.py27 credentials = flow.step2_exchange(device_flow_info=flow_info)
/external/python/oauth2client/oauth2client/
Dclient.py1967 def step2_exchange(self, code=None, http=None, device_flow_info=None): argument
1989 if code is None and device_flow_info is None:
1991 if code is not None and device_flow_info is not None:
1995 code = device_flow_info.device_code
2009 if device_flow_info is not None:
/external/python/oauth2client/tests/
Dtest_client.py1845 flow.step2_exchange(code='code', device_flow_info='dfi')
1884 def _exchange_success_test_helper(self, code=None, device_flow_info=None): argument
1892 code=code, device_flow_info=device_flow_info, http=http)
1903 device_flow_info = client.DeviceFlowInfo(
1905 self._exchange_success_test_helper(device_flow_info=device_flow_info)