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)?
Question posted in Facebook API
The official documentation for the Facebook APIs can be found here.
The official documentation for the Facebook APIs can be found here.
2
Answers
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.