Voldrix / onlyfans-dl-2

OnlyFans content downloader v2
GNU General Public License v3.0
152 stars 23 forks source link

Stories are not downloaded yet #71

Closed Strange-IPmart closed 1 year ago

Strange-IPmart commented 1 year ago

Despite the fix for which i thank you, the stories are still not downloaded.

Voldrix commented 1 year ago

stories downloaded correctly for every profile I've tested. I can't produce a failure state, so I'll need more information about your issue. enough to reproduce it. What version of Python, Windows or Linux, does it fail for every single profile, have you double checked you're running the newest code, do you have stories set to true at the top? line 131 should say

if subtype == "stories":
    source = media["files"]["source"]["url"]

add to it this

if subtype == "stories":
    source = media["files"]["source"]["url"]
    print("source:" + source)

see if any of the sources are blank/null or otherwise invalid. or if all the links are good and open in the browser.

Strange-IPmart commented 1 year ago

If instead I set everything to "False" except the stories, the stories are not downloaded. The script finds them but doesn't download them.

"Found 1 stories Downloaded 0 new stories"

I'm probably doing something wrong or I didn't quite understand how to use the script correctly but sometimes it happens that I would like to download only the story photo and not all the profile content. Maybe it is not possible to use the script for this purpose?Thank you very much for your interest and help BTW

Il giorno gio 8 dic 2022 alle ore 00:57 Ben Goriesky < @.***> ha scritto:

stories downloaded correctly for every profile I've tested. I can't produce a failure state, so I'll need more information about your issue. enough to reproduce it. What version of Python, Windows or Linux, does it fail for every single profile, have you double checked you're running the newest code, do you have stories set to true at the top? line 131 should say

if subtype == "stories": source = media["files"]["source"]["url"]

add to it this

if subtype == "stories": source = media["files"]["source"]["url"] print("source:" + source)

see if any of the sources are blank/null or otherwise invalid. or if all the links are good and open in the browser.

— Reply to this email directly, view it on GitHub https://github.com/Voldrix/onlyfans-dl-2/issues/71#issuecomment-1341770805, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACJKOBBTYJFBLV7EVER6MI3WMEP5XANCNFSM6AAAAAASXLQ224 . You are receiving this because you authored the thread.Message ID: @.***>

Voldrix commented 1 year ago

so you set photos to false... Then it won't download photos. You can turn posts off, and only download stories, but you need to have photos and/or videos enabled as they apply to every category.

Strange-IPmart commented 1 year ago

I have ascertained that in order to download the stories i have to set "True" on both photos and videos. Thanks for the support.