Built-in Dates

What would be the easiest way to create a dynamic timeline? I need a timeline whose "search" can be updated via javascript.

Twitter has built-in timelines , but they need to be created as a widget, and then inserted into the page.

I could use some jquery plugin like Tweet! but he does not respect twitter new.

+4
source share
1 answer

Not exactly the timeline, but ... you can get the JSON object via this URL (for example): http://search.twitter.com/search.json?q=searchTerm%20secondSearchTerm If you use this, you will search "searchTerm secondSearchTerm", so replace it with a variable in your javascript.

It has some limitations, but I hope this helps. Read more here: Twitter Search API .

+3
source

Source: https://habr.com/ru/post/1442461/


All Articles