in okta/framework/ApiClient.py [0:0]
def get(self, url, params=None, attempts=0):
params_str = self.__dict_to_query_params(params)
resp = requests.get(url + params_str, headers=self.headers)
attempts += 1
if self.__check_response(resp, attempts):
return resp
else:
return self.get(url, params, attempts)