anouarbensaad / instagramBot

A NodeJS wrapper for the Instagram Bot It works with instagram private api ,It has almost all the features the Instagram app.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

InstagramBot


Plateform InstagramBot NODEJSV.

A NodeJS wrapper for the Instagram Bot It works with instagram private api ,It has almost all the features the Instagram app.

Requirements


NPM_Packages :

Features


Installation


  • Clone the repository. https://github.com/anouarbensaad/InstagramBot and switch into the directory cd InstagramBot

EXAMPLE


EXEMPLE

Database Config.


Modify the database configuration file common/common_db.js

function IGAPIDB(){
	const self = {}
	var pool  = mysql.createPool({
	  connectionLimit : 10,
	  host:     "<YOUR DB HOSTNAME | LOCALHOST>",
	  user:     "<DB USERNAME>",
	  password: "<DB PASSWORD>",
	  database: "<DATABASE_NAME>",
	  charset:  "utf8mb4_unicode_ci"
	});

Time Config.


Change the time at each action for you did not detect

setTimeout(function()
    {
      processfollow(source_user,category,resdata,index+1,callback);
    },Math.floor(Math.random()*('???'))+'???');
console.log('\x1b[93m%s\x1b[0m',"[~] Elapsed Time : "+_seconds+" seconds");

Table of Contents


License


MIT

About

A NodeJS wrapper for the Instagram Bot It works with instagram private api ,It has almost all the features the Instagram app.

License:MIT License


Languages

Language:JavaScript 66.5%Language:HTML 20.3%Language:CSS 10.5%Language:TSQL 2.7%