This project is a simple TypeScript script designed to download your entire camera roll from photoai.com in one run. Due to the large number of photos (over 600), this script helps automate the download process.
-
Install All Versions Install the required versions for Node.js and any other dependencies. Best would be using asdf, but feel free to install each tool in right version using
.tool-versions
file:asdf install
-
Configure Environment Variables Create file
.env.local
or just use.env
to fill in the required variables in the script:CURRENT_COOKIE
CURRENT_HASH
These values are necessary for authenticating your requests to photoai.com.
-
Run the Script Once everything is set up, you can start the download process by running:
pnpm build_start
To locate the CURRENT_COOKIE
and CURRENT_HASH
values, follow these steps (screenshot below):
-
Open your browser and go to photoai.com.
-
Log in to your account if you haven't already.
-
Open the Developer Tools in your browser:
- For Chrome:
Ctrl+Shift+I
(Windows/Linux) orCmd+Opt+I
(Mac) - For Firefox:
Ctrl+Shift+K
(Windows/Linux) orCmd+Opt+K
(Mac)
- For Chrome:
-
Navigate to the Network tab.
-
Start any action that triggers a request to download your camera roll or refresh the page.
-
Look for a network request that corresponds to fetching your camera roll. This might be named something like
load_photos?action=get-camera-roll&offset=0&query=...
. -
Click on this request, and then go to the Headers tab.
-
You will find the necessary values highlighted:
- Cookie: Look for a value starting with
PHPSESSID=
, this will be yourCURRENT_COOKIE
. IMPORTANT: Remember to copy whole value of keycookie
, also withPHPSESSID=
- Hash: Look for a value that might be associated with your session or request, often labeled as
hash
. Copy only string which is present afterhash=
Refer to the screenshot provided for a visual reference—highlighted areas indicate where these values are typically found.
- Cookie: Look for a value starting with
-
Copy these values into your script where prompted to fill
CURRENT_COOKIE
andCURRENT_HASH
.