Instagram API を使用して特定のタグ付きの画像を取得していますが、ビューに画像を表示しているときに Rails が undefined method 'images' と言いました。
Railsが与えるエラーは次のとおりです。
undefined method `images' for #<Array:0x007f9ee7460608>
コントローラーは次のとおりです。
@photos = Instagram.tag_recent_media("cats")
ビューのソースは次のとおりです。
<% @photos.each do |photo| %>
<%= image_tag photo.images.standard_resolution.url %>
<% end %>