What actually is multi access detection ? Are you saying an account should always come from the same IP ?multi access detection mean no royalities should avoid access detection
not same ip, i mean if you want accessing with an account, you should connect with some user agent and country/city proxy, maybe another factors to avoid abnormal access detection, > aceess detection mean something wrongWhat actually is multi access detection ? Are you saying an account should always come from the same IP ?
Is the code yours? Are you in control of the env it's running in (your server, PC, VPS)? Or is this a service?
This is a workaround, but what I would do in that situation is to use Puppeteer to just automate the password change. For someone who knows Puppeteer, this will take no longer than hour and I would say it's very reliable. If it's a service, I would contact service provider and ask for this extra service.
Ask the developer to take bot protection into account (mouse movements, headful mode etc.).
PS. Obviously you need high level of trust into developer. I can explain further how this can be done with zero trust if you need.
No it is my own code, i provide also services...i created more than 15 scripts that create change validate upgrade streame like follo...all what you thinking in i can create...just i think to something i create own script ...Can you explain further please ?
No it is my own code, i provide also services...i created more than 15 scripts that create change validate upgrade streame like follo...all what you thinking in i can create...just i think to something i create own script ...
Not much to it really - Puppeteer is Chrome testing automation suite. In non-programmer words, think of it like macros in steroids. You can write code to do basically any interaction on the site (except CAPTCHA, but that's a different story).Can you explain further please ?
Thanks.Not much to it really - Puppeteer is Chrome testing automation suite. In non-programmer words, think of it like macros in steroids. You can write code to do basically any interaction on the site (except CAPTCHA, but that's a different story).
So for example one could write a program like this:
1. Open the browser and navigate to https://www.spotify.com
2. Login
3. Open settings and go to password change page
4. Generate and fill in a new password
5. Save the password for future access
6. Close the browser
Headful mode - headful mode is opposite of headless mode. What this means is opening an actual window. Opening Chrome in headless mode means that everything gets simulated. However, websites and especially bot protection services like Cloudflare pick up on this quite easily and then throw captcha at the browser.
Mouse movements - another thing that websites might use to detect a bot user. So just to make some semi-random clicks and whatnot to it.
There is certainly lot of finesse to this, but I am just getting my morning coffee so way too lazy to dive deep into it.