Pack of scripts to extract data from Patreon or OnlyFans.
You'll need to have Node.js installed along with npm.
Tested with Node 14.
# Install node_modules
cd extractor-server
npm install
First, run the server:
cd extractor-server
npm start
# or: node ./index.js
To download data for a given user:
- Open your browser to the OnlyFans page of that user, (e.g.
https://onlyfans.com/testuser
for the usertestuser
) - Open the dev tools (Ctrl+Shift+I), and open the console tab
- Copy the script outputed by the server in the console to the browser console and press
Enter
- Stay on the page until the script says
Downloading finished x/x (100%)
Now, a file named onlyfans_{username}_{date}_{random_id}.zip
should exist in the extractor-server
directory containing the backup.
To read the backup:
- Extract the backup zip file in an empty folder
- Copy the file
index.html
from thereaders/onlyfans/build
directory to the folder used for step 1 - Double click on the copied
index.html
file
WARNING: The script was only tested when logged and subcribed to the user.
To download data for a given chat:
- Open your browser to an OnlyFans chat, (e.g.
https://onlyfans.com/my/chats/chat/xxxxxxxx
) - Open the dev tools (Ctrl+Shift+I), and open the console tab
- Copy the script outputed by the server in the console to the browser console and press
Enter
- Stay on the page until the script says
Downloading finished x/x (100%)
Now, a file named onlyfans-messages_{date}_{random_id}.zip
should exist in the extractor-server
directory containing the backup.
To read the backup:
- Extract the backup zip file in an empty folder
- Copy the file
index.html
from thereaders/onlyfans/build
directory to the folder used for step 1 - Double click on the copied
index.html
file
WARNING: The script was only tested when logged and subcribed to the user.
To download data for a given user:
- Open your browser to the Patreon page of that user, (e.g.
https://www.patreon.com/testuser/posts
for the usertestuser
) - Open the dev tools (Ctrl+Shift+I), and open the console tab
- Copy the script outputed by the server in the console to the browser console and press
Enter
- Stay on the page until the script says
Downloading finished x/x (100%)
Now, a file named patreon_{date}_{random_id}.zip
should exist in the extractor-server
directory containing the backup.
To read the backup:
- Extract the backup zip file in an empty folder
- Copy the file
index.html
from thereaders/patreon/build
directory to the folder used for step 1 - Double click on the copied
index.html
file
WARNING: The script was only tested when logged and subcribed to the user.
The MIT License (MIT)
Copyright (c) 2019 The Bootstrap Authors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.