What is [node:10280?
I have an application that takes a user’s 80 most recent tweets, and for each reply tweet it calculates the difference in time between the original tweet and their reply, and then returns the average. It works, but at 80 calls (max) per use, it can hit the rate limit fairly quickly.
Is there any way around multiple calls (one for each reply), if all I am interested in is the timestamp between one tweet (which I get by accessing a user’s timeline) and another (which I get by detecting the in_reply_to_user_id_str of the original, and then requesting that tweet)?
Furthermore, even at searching 80 tweets the page takes a long time to load.
If it can’t go above a certain “velocity”, is it smart to design the page so that all other content loads first, and then this information comes up once it has finished loading (sorry for not knowing the terminology, I’m new to web design)?
Thanks much