在Instagram中获得提及用户的帖子

时间:2014-11-19 20:23:02

标签: ruby-on-rails ruby api instagram

我想用提到的用户(@username)获取帖子,我该怎么办呢? 我已经在这里搜索过:
http://instagram.com/developer/endpoints/
https://github.com/Instagram/instagram-ruby-gem

这样的东西,但是用户名,而不是标签。

 get "/tags" do
  client = Instagram.client(:access_token => session[:access_token])
  html = "<h1>Search for tags, get tag info and get media by tag</h1>"
  tags = client.tag_search('cat')
  html << "<h2>Tag Name = #{tags[0].name}. Media Count =  #{tags[0].media_count}. </h2><br/><br/>"
  for media_item in client.tag_recent_media(tags[0].name)
    html << "<img src='#{media_item.images.thumbnail.url}'>"
  end
  html
end

1 个答案:

答案 0 :(得分:0)

使用当前的Instagram API无法做到这一点。

就我而言,我这样做:

如果您知道哪些用户可能提到了您想要的用户,您可以查询他们最近/完整的媒体并提取提及您的用户的媒体。 这样我也可以在描述中找到所需用户的照片。