class SocialProfile::People::InstagramParser

Public Instance Methods

friends_count() click to toggle source
# File lib/social_profile/people/instagram_parser.rb, line 8
def friends_count
  user['followed_by']['count']
end
last_posts() click to toggle source
# File lib/social_profile/people/instagram_parser.rb, line 4
def last_posts
  RubyInstagramScraper.get_user_media_nodes(self.uid)['items']
end
user() click to toggle source
# File lib/social_profile/people/instagram_parser.rb, line 12
def user
  RubyInstagramScraper.get_user(self.uid)
end