Last active
December 19, 2015 07:49
-
-
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*
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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