yellowcat
Regular Member
- Aug 27, 2015
- 404
- 297
I'm a little confused with this.
Okay say you are coding a twitter follower bot and have a list of people you want to follow, such as.
@alice
@bob
...Etc
Which is the best way to go about this?
1.
Have the bot go to twitter.com/Alice then click follow and do this for the rest of the users.
Possible Problems - Could leave mad footprints because users typically click from a certain page to go navigate to a users page,Not just directly go there (at-least not in mass), i feel some websites record this.
2.
Tweek the html code from a single persons follow button.
Such as
Into the below to follow alice.
Possible Problems - Twitter could detect that bot is on single page mass following.
Or should i just scrap the idea of following from a list and just go to X user's followers page and/or the search bar then scroll and follow from that?
I guess at the end of the day it's better to build something that emulates human behavior, such as scrolling/viewing photos/using search bar, as opposed to something that just "logs in ,mass follows then logs out".
Another random question.
Can websites such as Facebook/Instagram/Twitter etc record mouse movement?
Perhaps i am just being Paranoid.
Any insight or advice would be appreciated
Okay say you are coding a twitter follower bot and have a list of people you want to follow, such as.
@alice
@bob
...Etc
Which is the best way to go about this?
1.
Have the bot go to twitter.com/Alice then click follow and do this for the rest of the users.
Possible Problems - Could leave mad footprints because users typically click from a certain page to go navigate to a users page,Not just directly go there (at-least not in mass), i feel some websites record this.
2.
Tweek the html code from a single persons follow button.
Such as
Code:
#pseudocode
<button user-to-follow="Bob">Follow</button>
Into the below to follow alice.
Code:
#pseudocode
<button user-to-follow="Alice">Follow</button>
Possible Problems - Twitter could detect that bot is on single page mass following.
Or should i just scrap the idea of following from a list and just go to X user's followers page and/or the search bar then scroll and follow from that?
I guess at the end of the day it's better to build something that emulates human behavior, such as scrolling/viewing photos/using search bar, as opposed to something that just "logs in ,mass follows then logs out".
Another random question.
Can websites such as Facebook/Instagram/Twitter etc record mouse movement?
Perhaps i am just being Paranoid.
Any insight or advice would be appreciated