An example Node.js application built using the Express framework connected to instagram private api to get all public users information
Clone this repo :
git clone https://github.com/sudoGunner/instagram-info-profile.git ./instagram-info-profile-server
cd instagram-info-profile-server
npm install
npm updat
After install all packages navigate into server.js file
The server.js file is the main entry point of our application then edit the client variable with your Instagram account login information:
const client = new Instagram({
username: "Your_Email",
password: "Your_Password",
cookieStore,
});
Then you are good to go .