insta_public_api 0.0.2
insta_public_api: ^0.0.2 copied to clipboard
A plugin for getting Instagram Details of a public user. Just Pass username inside InstaPublicApi class and get the necessary details.
Insta Public Api #
Get Details of a Public Instagram Account just by entering it's username
// Initialize with username
final ipa = InstaPublicApi('username');
// Get info like Full Name, Followers, Following etc
final info = ipa.getBasicInfo();
Example App #
[Example App]
Click Here for Code
Currently Available Methods #
-
String getProfilePic()returns image url of profile pic -
BasicInfo getBasicInfo()returns fullName, followers, following etc. -
List<String> getTimelinePostsImages()returns a List of imageUrl for each post -
WIP
List<Post> getTimelinePosts()returns Post(and nested images) with details e.g. no. of likes, comments, caption etc