Hi!,
in these days I am developing a web application in HTML & Javascript and I’m trying to connect the Twitter’s API.
I need to login the user and read its timeline (tweets sent by the authenticated user are not public).
I know other server side programming languages like php that can do this type of operation (I’ve already made this connection in PHP and it works) but scalability problems I would like to implement a client-side solution only.
-
The user makes the login with its username password
-
The user authorizes the app to access its data
-
Download data and store the JSON stream data in a javascript variable and then make operations.
In the official Twitter’s developer documentation I’ve found two libraries: user-stream and codebird-js but no examples / tutorial how to use them.
I could use Twitter Anywhere Service but I have read that the service will stop working next March.
Anyone can help me? Thanks in advance
Note: In javascript I also know that there are issues concerning the secrecy of the consumer key.