skip to Main Content

First of all I have found this url to get the public Instagram page info. https://www.instagram.com/facebook/?__a=1. Is this the correct way of accessing info or it can be broken any time in future? I have checked instagram api but I could not find client_credential support(actually I wanna access my Instagram public page from my server). Actually our server need to get and send this info to our native Android and IOS clients. What is the correct way to get page title/image/followers/following/description/posts(including likes and comments count)?

2

Answers


    • With out using instagram api,one can get info from instagram’s website.Here is demo of getting public profile picture of instagram’s user.

    • I have created api in nodejs to fetch profile picture of instagram’s user using cheerio module.And created frontend in angular2.As well as all this component deployed in Heroku Cloud.


    Login or Signup to reply.
  1. Any hidden functionality is almost certain to be removed. You should always rely on the public APIs provided.

    You should make use of the Instagram Users API, for your particular use case.
    https://www.instagram.com/developer/endpoints/users/

    Ideal solution is, for every request from your Native Apps, you shouldn’t be calling the instagram API, else you may be throttled. You must call instagram API on demand and probably cache the result for an hour or so.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search