I have an application that should display the number of followers and the following ( users/show.json) for a random user on a public page (authentication is not required). With Twitter API 1.0, this was pretty simple since authentication is not needed for the request. With the new API, Twitter 1.1 is no longer possible, so I need to authenticate the request (through OAuth ).
Is it only possible to "authenticate" the application, not the user? I mean: can I ask the user to log in and only authenticate with the application key / secret? Or each time I need to create a token with user credentials, creating a callback, etc.?
source
share