Skip to content

Instantly share code, notes, and snippets.

@nobodyiscertain
Last active December 19, 2015 07:49
Show Gist options
  • Save nobodyiscertain/5921220 to your computer and use it in GitHub Desktop.
Save nobodyiscertain/5921220 to your computer and use it in GitHub Desktop.
An example of how to consume the JSON data from your Sinatra Twitter app. This is dependent upon jQuery. *Untested*
get '/tweets.json' do
if request.referrer == "http://example.com/blog/"
jsonp @@twitter_client.home_timeline.map(&:attrs).first(5)
else
status 401
end
end
$.getJSON('http://pathtoyoursinatratwitterapp.com/tweets.json?callback=?').done(function(data) {
$.each(data, function(index, value) {
console.log(value); // Should output your tweet obj to inspect
// Some DOM manipulation here ex: $('<li>').text(value.text);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment