I have an application that needs to display number of followers and following (users/show.json) for a random user on a public page (no authentication required). With the Twitter api 1.0 it was quite easy as no authentication is needed for the request. With the new Twitter api 1.1 is no more possible so I need to authenticate the request (via oauth). Is it possible only "authenticate" the application and not the user too? I mean: can I avoid to ask user to login and only authenticate with application key/secret? or everytime I need to create a token with user credentials too, creating callback etc? Sorry I am bit confused about that.
|
|
|
Yes, it is possible! If your app doesn't need to do things like post statuses or send direct messages on behalf of a user, you should be able to retrieve all of a user's public information with a single hardcoded set of Twitter oAuth credentials, and not require the user to authenticate.
If you're not comfortable using the Twitter API directly, there are a number of good API wrappers out there for various languages -- among others, the Temboo SDK, which will give you code snippets for calling various methods (and also gives you a place to securely store your Twitter credentials, so you don't need to bake them into your app). Take a look at: https://live.temboo.com/library/Library/Twitter/Timelines/UserTimeline/ https://live.temboo.com/library/Library/Twitter/FriendsAndFollowers/GetFollowersByID/ (full disclosure: I work at Temboo) |
|||||
|