Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

1 Answer

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.

  • Login to Twitter and go to the developer dashboard at https://dev.twitter.com/apps
  • Register a new application; after the application is registered, view the application details. You'll see an "oAuth Tool" tab, where you'll find all the relevant oAuth values for that app: Consumer Key, Consumer Secret, Access Token, and Access Token Secret.
  • Using these credentials, you'll be able to make requests to the new Twitter API.

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)

share|improve this answer
Thanks for the hint. I generated token and token_secret for my app but when I pass these data to display a public showline it returns 401. If I use token data generated from user login it works fine. – Randomize Feb 11 at 10:48
Sorry to hear. How are you making the request? Are you using the Temboo SDK or website, a different API wrapper library, or cURL? I'm able to successfully use the parameters from the oAuth tool to make a request to /statuses/user_timeline.json – mflaming Feb 15 at 18:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.