Skip to content

Instantly share code, notes, and snippets.

@gabrielsroka
Created November 29, 2022 18:05
Show Gist options
  • Select an option

  • Save gabrielsroka/b7d6802f3227f24499e3d193db747708 to your computer and use it in GitHub Desktop.

Select an option

Save gabrielsroka/b7d6802f3227f24499e3d193db747708 to your computer and use it in GitHub Desktop.
paginate Okta with curl and shell
#!/usr/bin/env bash
# Set these:
url='https://COMPANY.okta.com/api/v1/users'
token='...'
# Pagination code based on https://michaelheap.com/follow-github-link-header-bash
while [ "$url" ]; do
r=$(curl -i --compressed -Ss -H "authorization: SSWS $token" "$url" | tr -d '\r')
headers=$(echo "$r" | sed '/^$/q')
body=$(echo "$r" | sed '1,/^$/d')
echo "$body" | jq -r '.[].profile.login'
url=$(echo "$headers" | sed -n -E 's/link: <(.*)>; rel="next"/\1/pi')
done
@pro4tlzz
Copy link
Copy Markdown

Really shows how hard bash is to read and use.

All that for next link when it's super easy with requests in Python.

I'm sure someone has a use case for this though.

@gabrielsroka
Copy link
Copy Markdown
Author

gabrielsroka commented Nov 29, 2022

Python version

#!/usr/bin/env python

import requests

# Set these:
url = 'https://COMPANY.okta.com/api/v1/users'
token = '...'

# If you're making multiple API calls, using a session is much faster.
session = requests.Session()
session.headers['authorization'] = 'SSWS ' + token

def get_objects(url):
    while url:
        r = session.get(url)
        yield from r.json()
        url = r.links.get('next', {}).get('url')
        
for user in get_objects(url):
    print(user['profile']['login'])

@gabrielsroka
Copy link
Copy Markdown
Author

this shell script is broken out into functions

#!/usr/bin/env bash

main() {
    # Set these:
    base_url='https://COMPANY.okta.com'
    token='...'
    filter=$(enc 'profile.lastName eq "Doe"')
    limit=4
    url="$base_url/api/v1/users?filter=$filter&limit=$limit"

    while [ "$url" ]; do
        get_page
        echo "$body" | jq --raw-output '.[] | .id + " " + .profile.login'
    done
}

get_page() {
    local flags='--include --compressed --show-error --silent'
    local r=$(curl $flags --header "authorization: SSWS $token" "$url" | tr --delete '\r')
    local headers=$(echo "$r" | sed '/^$/q')
    url=$(echo "$headers" | sed --silent --regexp 's/link: <(.*)>; rel="next"/\1/pi')
    body=$(echo "$r" | sed '1,/^$/d')
}

enc() {
    echo $1 | sed 's/ /+/g; s/"/%22/g'
}

main

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment