Hi,
I m wanting to load tweets into a non-bootstrap carousel, and break up a series of tweets into "pages"
I’ve seen that “pagination” has been deprecated, and that there are max_ID, since_ID, and count that can be used.
I’m using the user_timeline callback.
Is there actually a single code example somewhere?
the docs provided are pretty useless unless you work for twitter.
https://dev.twitter.com/tags/best-practices
https://dev.twitter.com/docs/api/1/get/statuses/home_timeline
here’s the code so far:
<div id="twit-div"><ul id="twitter_update_list"></ul></div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://api.twitter.com/1/statuses/user_timeline/userName.json?callback=twitterCallback2&count=9&since_id=12366342"></script>
</div>
this works great for getting a single block of 9 tweets.
What I need to do is break it into 3 sections for use in an carousel.
ie
first 3 tweets (1-3)
next 3 tweets (4-6)
last 3 tweets (7-9)
Any suggestions on how to do this, or any adequate documentation?