Hello, i'm new to making configs and i've been working on a selenium netflix config that will also save the cookies of the working accounts in a .txt file, the problem is that it gives incorrect cookies no matter what i do, i've been trying to solve this issue since hours, please help.
Rn this is my code
This is a bump
Rn this is my code
Code:
#cookies REQUEST GET "https://netflix.com/browse"
HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36"
HEADER "Pragma: no-cache"
HEADER "Accept: */*"
PARSE "<COOKIES(nfvdid)>" LR "" "" -> VAR "nfvdid"
PARSE "<COOKIES(NetflixId)>" LR "" "" -> VAR "netflixid"
PARSE "<COOKIES(SecureNetflixId)>" LR "" "" -> VAR "securenetflixid"
PARSE "<COOKIES(memclid)>" LR "" "" -> VAR "memclid"
FUNCTION CurrentUnixTime -> VAR "date"
FUNCTION UnixTimeToDate "dd MM yyyy" "<date>" -> VAR "newdate"
UTILITY File "Hits\\Netflix_cookies\\<USER> _<newdate>.txt" Write "[{\"domain\":\".netflix.com\",\"path\":\"\\/\",\"name\":\"nfvdid\",\"value\":\"<nfvdid>\"},{\"domain\":\".netflix.com\",\"path\":\"\\/\",\"name\":\"NetflixId\",\"value\":\"<netflixid>\"},{\"domain\":\".netflix.com\",\"path\":\"\\/\",\"name\":\"SecureNetflixId\",\"value\":\"<securenetflixid>\"},{\"domain\":\".netflix.com\",\"path\":\"\\/\",\"name\":\"memclid\",\"value\":\"<memclid>\"}]"
This is a bump