I’m looking for ways to avoid using a ruby library for fetching tweets, and processing the returned JSON. My goal is simply to display tweets from a specific account, in html. Ideally I would use AJAX to periodically update the div, with the latest tweets.
All of this can easily be accomplished using ruby’s twitter gem. However I am working within the context of a framework and I’d like to avoid creating a controller and resource to hit.
So the solution I’m exploring are Client Side solutions. I am unaware as to the best practices for this, and if there are any common library’s used. Do you have any experience with this or resources you could point me towards?
Thanks!
You’re looking for the Twitter JSONP API.