node-ig-framework
v1.1.7
Published
Object-oriented library for sending and receiving messages via Instagram
Downloads
16
Readme
node-ig-framework
Framework for interacting with instagrams private api in a usable manner in a structure and format similar to discord's old bot development framework.
Installation
- Install node.js from https://nodejs.org/
- Create a new project folder
$ cd
to that directory- Run
$ npm init
and follow prompts - Run
$ npm install node-ig-framework
and boom you're done!
Setup
const Insta = require("node-ig-framework");
const client = new Insta.Client();
client.on("connected", () => {
console.log(`Logged in as ${client.user.fullName} (${client.user.username})`);
console.log(`User ID: ${this.client.user.id}`);
console.log(`Followers: ${this.client.user.followerCount}`);
console.log(`Following: ${this.client.user.followingCount}`);
console.log(`Business: ${this.client.user.isBusiness}`);
console.log(`Verified: ${this.client.user.isVerified}`);
console.log(`Private: ${this.client.user.isPrivate}`);
});
client.on("messageCreate", (message) => {
if (message.author.id === client.user.id) return;
message.markSeen();
if (message.content === "!ping") {
message.reply("!pong");
}
message.chat.startTyping({ time: 5000 });
});
client.login("username", "password");