Created
March 15, 2020 17:10
-
-
Save javiribera/3c1cbb0f2831d42d83bb2473188e3fac to your computer and use it in GitHub Desktop.
Download entire iCloud shared albums icloud-album-download.sh
This file contains hidden or 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 | |
| # requires jq | |
| # arg 1: iCloud web album URL | |
| # arg 2: folder to download into (optional) | |
| # | |
| # Credits: https://gist.github.com/zneak/8f719cd81967e0eb2234897491e051ec | |
| # icloud-album-download.sh | |
| function curl_post_json { | |
| curl -sH "Content-Type: application/json" -X POST -d "@-" "$@" | |
| } | |
| BASE_API_URL="https://p23-sharedstreams.icloud.com/$(echo $1 | cut -d# -f2)/sharedstreams" | |
| pushd $2 > /dev/null | |
| STREAM=$(echo '{"streamCtag":null}' | curl_post_json "$BASE_API_URL/webstream") | |
| HOST=$(echo $STREAM | jq '.["X-Apple-MMe-Host"]' | cut -c 2- | rev | cut -c 2- | rev) | |
| if [ "$HOST" ]; then | |
| BASE_API_URL="https://$(echo $HOST)/$(echo $1 | cut -d# -f2)/sharedstreams" | |
| STREAM=$(echo '{"streamCtag":null}' | curl_post_json "$BASE_API_URL/webstream") | |
| fi | |
| CHECKSUMS=$(echo $STREAM | jq -r '.photos[] | [(.derivatives[] | {size: .fileSize | tonumber, value: .checksum})] | max_by(.size | tonumber).value') | |
| echo $STREAM \ | |
| | jq -c "{photoGuids: [.photos[].photoGuid]}" \ | |
| | curl_post_json "$BASE_API_URL/webasseturls" \ | |
| | jq -r '.items | to_entries[] | "https://" + .value.url_location + .value.url_path + "&" + .key' \ | |
| | while read URL; do | |
| for CHECKSUM in $CHECKSUMS; do | |
| if echo $URL | grep $CHECKSUM > /dev/null; then | |
| curl -sOJ $URL & | |
| break | |
| fi | |
| done | |
| done | |
| popd > /dev/null | |
| wait |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just in the case it helps anyone else... you can get this done using Gemini AI... and python
below is the direct copy paste from Gemini chat...
You will need to udpate the album ID... and might also need to update the
p23with the server that hosts your album.