@YounesGa To have each thread use only 1 line, set the value "max success usage: 1", "max number of simultaneous use: 1".
This is equivalent to the fact that after the flow finishes running with a result of Success, the already used proxy line will not be used again, whereas if there is an error, it will be reused 999999999 times and only one line. for each stream
290a12f6-98cf-4378-9d4c-72a246339adb-image.png
How to save cookies when login from text file?
-
@support said in How to save cookies when login from text file?:
@zaza Take a look at this template. 0_1476964866734_twitterautologin.xml it implements autologin for twitter.
Cookies for every account are saved to different files, but you can modify it to write in one file.
Thank you for the response. But i am looking for autologin and auto save cookies to each accounts separately when we use the account details from a text file for multiple accounts.
eg for text file -
login1:pass1
login2:pass2
login3:pass3How to save cookies for the accounts to autologin in such cases?
-
@zaza said in How to save cookies when login from text file?:
@support Any update?
-
@zaza If you need to save cookies data to same files, you need manually update file:
Save it to list. (Read File To List action)
Do foreach.
Find account, that you using. (If action)
Generate line login:pass:cookies. (just add cookies data to that line with Set Variable action)
Update list with that line. (Set Element action)
Save list to file. (Write List To File action)If you don't have requirment to save everything in one file, you can still use my example, it will work with multiple accounts.