mikf / gallery-dl

Command-line program to download image galleries and collections from several image hosting sites
GNU General Public License v2.0
11.3k stars 922 forks source link

Am I doing the instagram cookie directory right? #5946

Closed jojo2833432 closed 1 month ago

jojo2833432 commented 1 month ago
        "instagram": {
            "cookies": "C:\Users\username\cookies.txt"
        },

Is this how it works in my .conf file?

mikf commented 1 month ago

Backslashes need to be escaped or replaced with forward slashes:

            "cookies": "C:\\Users\\username\\cookies.txt"
            "cookies": "C:/Users/username/cookies.txt"
jojo2833432 commented 1 month ago

Thanks!