What do WebBased Automation Service use in backend?

IAmDaze

Junior Member
Joined
Sep 2, 2017
Messages
162
Reaction score
159
I wanted to know what do websites like Instazood and other web-based automation services use in the backend. Can I buy similar scripts? I have seen very similar services with the same interface. They must be using same script. I searched but couldn't find.
 
Many platforms offer services to resellers, based on API access, or as a "white label" solution. The resellers do only use a separate domain, sometimes with a different design.

Regarding the backend: We created a few bots based on Linux servers, coded in C++. They operate inside a small cluster, located at different data centers to be fail safe. The browser interface controls only the scheduling of tasks.
 
Look into some python instagram bots, they can be run headless and could probably be coded to a web interface fairly easily. Depends on your requirements and coding skill.
 
I wanted to know what do websites like Instazood and other web-based automation services use in the backend. Can I buy similar scripts? I have seen very similar services with the same interface. They must be using same script. I searched but couldn't find.
You can use a variety of languages. Look into scripting languages like python or ruby.
 
They aren't just simple scripts. There's a lot happening in the backend.

Personally I use python for building these kind of off-site services.

Django is good for db services and has great REST API documentation if you'd like to get started with something like that.
 
They aren't just simple scripts. There's a lot happening in the backend.

Absolutely. Depending on the platform you target (Facebook, Instagram, Twitter, YouTube, ...) there are really complex systems behind, with 100,000+ lines of code.
 
Many platforms offer services to resellers, based on API access, or as a "white label" solution. The resellers do only use a separate domain, sometimes with a different design.

Regarding the backend: We created a few bots based on Linux servers, coded in C++. They operate inside a small cluster, located at different data centers to be fail safe. The browser interface controls only the scheduling of tasks.

Look into some python instagram bots, they can be run headless and could probably be coded to a web interface fairly easily. Depends on your requirements and coding skill.

You can use a variety of languages. Look into scripting languages like python or ruby.

They aren't just simple scripts. There's a lot happening in the backend.

Personally I use python for building these kind of off-site services.

Django is good for db services and has great REST API documentation if you'd like to get started with something like that.

Absolutely. Depending on the platform you target (Facebook, Instagram, Twitter, YouTube, ...) there are really complex systems behind, with 100,000+ lines of code.
Thanks, guys for the tip. I am currently learning Python and I have been using open source Instagram bot (Instabot). I am currently trying to convert into a web app but wanted to know if there is already available scripts. I think I will do it by myself. It will also help me learn python.
 
To me WebBased at its finest can be defined in IFTTT and its backend is nodejs
 
Back
Top