Module: SocialMiner::Instagram

Defined in:
lib/social_miner/instagram/base.rb,
lib/social_miner/instagram/post_mapper.rb,
lib/social_miner/instagram/profile_info.rb,
lib/social_miner/instagram/post_comments.rb,
lib/social_miner/instagram/profile_posts.rb,
lib/social_miner/instagram/comment_mapper.rb,
lib/social_miner/instagram/profile_mapper.rb

Defined Under Namespace

Modules: CommentMapper, PostMapper, ProfileMapper Classes: Base, PostComments, ProfileInfo, ProfilePosts

Class Method Summary collapse

Class Method Details

.post_comments(request_headers = {}, **args) ⇒ Object



36
37
38
# File 'lib/social_miner.rb', line 36

def Instagram.post_comments(request_headers = {}, **args, &)
  Instagram::PostComments.new(request_headers).call(**args, &)
end

.profile_info(request_headers = {}, **args) ⇒ Object



28
29
30
# File 'lib/social_miner.rb', line 28

def Instagram.profile_info(request_headers = {}, **args, &)
  Instagram::ProfileInfo.new(request_headers).call(**args, &)
end

.profile_posts(request_headers = {}, **args) ⇒ Object



32
33
34
# File 'lib/social_miner.rb', line 32

def Instagram.profile_posts(request_headers = {}, **args, &)
  Instagram::ProfilePosts.new(request_headers).call(**args, &)
end