Last active
October 18, 2016 13:10
-
-
Save dohzya/d4c4dd1b1c176262c2b29f88a783b099 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
first_url="$1" | |
dir="$2" | |
if [[ -z "$first_url" || -z "$dir" ]]; then | |
echo "usage: $0 <request url> <output directory>" >&2 | |
exit 1 | |
fi | |
access_token="" | |
if [[ "$first_url" =~ access_token= ]]; then | |
access_token=$(echo "$first_url" | sed -E 's/.*(&access_token=[^&]*).*/\1/') | |
fi | |
page_idx=-1 | |
mkdir -p "$dir" | |
loop() { | |
url="$1$access_token" | |
echo "$url" | |
page_idx=$((page_idx + 1)) | |
content=$(curl -s "$url") || exit 3 | |
echo "$content" > "$dir/page-${page_idx}.json" | |
next_page=$(echo "$content" | sed -E 's/.*"next_page":("([^"]*)"|null).*/\2/') | |
[[ -n "$next_page" ]] && loop "$next_page" | |
sleep 0.2 | |
} | |
loop "$first_url" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment