Tal

Results 7 comments of Tal

I tried renaming it to `offset` but I get no response now...

I did pass them both at first and got same results. tried passing only the id and still no difference. I now tried using `offset` while sending and `next_offset` while...

thanks for the help but it still doesn't work for me.. I tried changing the `next_offset` from a list to a string separated by comma but to no avail. I...

Im using this function `admin_api.get_authentication_log` as follows: ``` auth_logs = admin_api.get_authentication_log(api_version=2, kwargs=params) next_offset_from_api = ','.join(auth_logs.get("metadata").get("next_offset")) logger.info("[DUO] Next offset from response: %s",next_offset_from_api) params['next_offset'] = next_offset_from_api ``` should I use a different...

Also, I couldnt run your command separately, if you could please send me a cURL it would be great

I think i'll rephrase my issue. I want to pull all auth logs data from the last x days, this data will be later parsed and plotted. is there a...