Skip to content

Instantly share code, notes, and snippets.

@GodSaveEarth
GodSaveEarth / download-icloud-sharedalbum.ps1
Created November 15, 2024 20:47
PowerShell script to download hi-res photos from Apple iCloud sharedalbum
# PowerShell script to download hi-res photos from
# Apple iCloud sharedalbum
#
# The script saves jsons and txt to its directory for debug reasons
# Please remove them manually later
$target_url = "https://www.icloud.com/sharedalbum/#B1e5ZhN2vMlt0Z"
@fay59
fay59 / icloud-album-download.sh
Last active March 10, 2025 13:39
Download entire iCloud shared albums
#!/bin/bash
# requires jq
# arg 1: iCloud web album URL
# arg 2: folder to download into (optional)
function curl_post_json {
curl -sH "Content-Type: application/json" -X POST -d "@-" "$@"
}