nocan your account get flagged or will the creator be notified if you use either taux1c or DIGITALCRIMINALs tools?
Is there a way for it to download all purchased content? Not just per model?Thanks, this is so much easier. In the og one I'd literally copy the values exactly and get told I messed up my auth file. For this one I put in the same damn values and it actually works.
Same here. Very strange that it would delete stuff on its own from the folder like it's an intruder or something just cause it was taken off the OF page.Does anybody know what I need to change so that the scraper doesn't delete old videos if the model deletes them? Just lost 20 something videos because the model took them off her page and it got deleted from my folder
Apologies if this was answered already but is there a way to download the 'stories'? allow right-click download only gives a htlm.How can you download somebody's "story" on onlyfans? I have the OF downloader and allow right click plugins but don't see any way to do it. Right click gives you an html file.
I did it when I needed to and it worked!I had the same error and took the above solution
change this line
results = [create_highlight(x) for x in results]
to
results = [create_highlight(x) for x in results.get("data")]
in the files
Line 283 in api/onlyfans/classes/user_model.py
or
Line 270 in api/onlyfans/classes/create_user.py
i changed the line in the create_user.py file
Scraper always used to get the stories for me, but today I noticed it wasn't downloading for a particular model's daily story. Tried multiple times. Anyone else noticing this?Apologies if this was answered already but is there a way to download the 'stories'? allow right-click download only gives a htlm.
I think
Thanks, but where should I update this information? I'm not seeing it in the config.json file inside settings folder. Is it located somewhere else?I think
results = [create_highlight(x) for x in results.get("data")]
should be
results = [create_highlight(x) for x in results.get("list")]
in file create_user.py line 270
RockinRonRobin follow this.Here's how I got mine to work. I'm guessing you might have to delete your config and auth files and just let the program create them over again.
First when you start the program again leave the config file exactly as is, just save it and exit. Don't add anything. lol As for the auth file well you just add whatever information that's yours.
These are the main changes I made for mine to work.
Changing the line "from seleniumwire import webdriver " to "from selenium import webdriver" in extras/OFLogin/start_ofl.py
Then this.
apis\onlyfans\classes\create_user.py change the line 270 from:
results = [create_highlight(x) for x in results]
to
results = [create_highlight(x) for x in results.get("data")]
Thing is though in this line the word changed from "data" to "list" so it's this now...
apis\onlyfans\classes\create_user.py change the line 270 from:
results = [create_highlight(x) for x in results]
to
results = [create_highlight(x) for x in results.get("list")]
So this is how I got mine to work. Good luck I guess.
Follow this :
Here's how I got mine to work. I'm guessing you might have to delete your config and auth files and just let the program create them over again.
First when you start the program again leave the config file exactly as is, just save it and exit. Don't add anything. lol As for the auth file well you just add whatever information that's yours.
These are the main changes I made for mine to work.
Changing the line "from seleniumwire import webdriver " to "from selenium import webdriver" in extras/OFLogin/start_ofl.py
Then this.
apis\onlyfans\classes\create_user.py change the line 270 from:
results = [create_highlight(x) for x in results]
to
results = [create_highlight(x) for x in results.get("data")]
Thing is though in this line the word changed from "data" to "list" so it's this now...
apis\onlyfans\classes\create_user.py change the line 270 from:
results = [create_highlight(x) for x in results]
to
results = [create_highlight(x) for x in results.get("list")]
So this is how I got mine to work. Good luck I guess.