1

Say there is a desktop application software with the purpose of automating certain tasks on social media sites and the developer plans to operate in the US.

The desktop application essentially opens websites in a webview (just like a browser would) and runs various JS commands such as navigating, clicking and typing.

The program never collects personal information or login details from users, it simply asks the user to login normally and then it begins interacting with the website through the same window that the user is already using naturally.

The program never accesses any restricted files, only what is public on the web, and then interacts with it. The program never modifies any files on external servers.

Example:

  • it CAN naturally navigate Facebook and click the like button
  • it WONT send packets or code to change likes on Facebook servers
  • it DOES use automation to help real users interact with other people's content
  • it DOES NOT assist users in creating fake accounts or providing false information to social media sites

Thank you in advance, if there is any more information that would be helpful, let me know.

Ian W
  • 113
  • 5

2 Answers2

2

Facebook's Terms of Service states that (my emphasis)

3 Safety

  1. You will not collect users' content or information, or otherwise access Facebook, using automated means (such as harvesting bots, robots, spiders, or scrapers) without our prior permission.

You say that your App

DOES use automation to help real users interact with other people's content

So your App accesses Facebook using automation; and as a result can be reasonably defined as a "robot" that automates processes for a user by a user. (As opposed to "harvesting bots, spiders, or scrapers" that mostly, by definition, access public information primarily in order to download it.)

The program never accesses any restricted files... The program never modifies any files on external servers.

If it did, you would be immediately identified as a hacker, which would be illegal by Facebook's TOS and other laws.

(accesses)...only what is public on the web, and then interacts with it.

Again, your App accesses Facebook users' public content using automation.

...it begins interacting with the website through the same window that the user is already using naturally.

Still using automation; the fact that a "real" user opens a window and then launches the App actually works against your argument that the user is not using an App that uses automation.

...and runs various JS commands such as navigating, clicking and typing.

Automation by robot.

BlueDogRanch
  • 19,184
  • 5
  • 37
  • 62
1

The ToS of most social media sites specifically disallow this sort of interaction. This makes using the program a breach of contract and therefore illegal.

However, most social media platforms provide APIs wither their own terms of service specifically for machine to machine interaction.

Dale M
  • 237,717
  • 18
  • 273
  • 546