Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.5 KB

README.md

File metadata and controls

43 lines (30 loc) · 1.5 KB

InstaFollowers

InstaFollowers is an ESP8266/ESP32 module designed for easily get Instagram Followers / Following count number.

Limitation

FREE account allows only for 500 requests/month.

Installation

  1. Arduino Library Manager (Recommended)
  2. Download or clone this repository into your arduino libraries directory

Basic Usage

  1. To make this libraty working, you need to create an account on https://rapidapi.com/,

then search for instagram scraper api https://rapidapi.com/social-api1-instagram/api/instagram-scraper-api2 and press Subscribe for Basic

alt text

Coppy x-rapidapi-host, and x-rapidapi-key

alt text

  1. Connect to Wi-Fi

  2. Include InstaFollowers module

    #include <InstaFollowers.h>
  3. Create a InstaFollowers object with rapidapi-host and rapidapi-key

    InstaFollowers instaStats("instagram-scraper-api2.p.rapidapi.com", "RAPID_API_KEY");
  4. Now you can get Followers number given username:

    int FollowersCount= instaStats.GetUserFollowersCount("arduino.cc");
    Serial.print("Follower count:"+String(FollowersCount));

Picture

alt text