Logstash input plugin for Instagram Streaming API Logstash input plugin for Instagram Streaming API elasticsearch elasticsearch

Logstash input plugin for Instagram Streaming API


Instagram has an API so you can definitely attempt something with the http_poller plugin.

Something like this:

input {   http_poller {      urls => {         search => {            method => get            url => "https://api.instagram.com/v1/media/search?lat=48.858844&lng=2.294351&access_token=ACCESS-TOKEN"         }      }      request_timeout => 60      interval => 60      codec => "json"   }}output {   stdout {       codec => rubydebug   }}


What's your mean of Instagram events?

If you want to store your Insta media, write a plugin for your browser or write a crawler and send media to elasticsearch