tags:

views:

175

answers:

2

Hi all,

I am building a Twitter app (with oAuth) and I cannot find any info on how I can get the current user's info.

By current user, I mean the user which granted my app permissions and for whom the app is making the requests to the API.

Any suggestions?

Thanks

+3  A: 

It was actually "account/verify_credentials" as seen here:

http://dev.twitter.com/doc/get/account/verify_credentials

Mike
A: 

The Twitter API

The Twitter API consists of three parts: two REST APIs and a Streaming API. The two distinct REST APIs are entirely due to history. Summize, Inc. was originally an independent company that provided search capability for Twitter data. Summize was later acquired and rebranded as Twitter Search. Rebranding the site was easy, fully integrating Twitter Search and its API into the Twitter codebase is more difficult. It is in our pipeline to unify the APIs, but until resources allow the REST API and Search API will remain as separate entities. The Streaming API is distinct from the two REST APIs as Streaming supports long-lived connections on a different architecture.

The Twitter REST API methods allow developers to access core Twitter data. This includes update timelines, status data, and user information. The Search API methods give developers methods to interact with Twitter Search and trends data. The concern for developers given this separation is the effects on rate limiting and output format. The Streaming API provides near real-time high-volume access to Tweets in sampled and filtered form.

To learn about the methods and data available through the API, review the Twitter API technical documentation.

We publicly disclose current defects and enhancements. Current defects and enhancement priorities can be viewed on our issues list. Long term goals are recorded in the roadmap document.

The API is updated regularly with new features. We occasionally deprecate features. All of these changes are communicated in the following places:

* @twitterapi on Twitter.
* The low-volume Twitter API Announcements Google group.
* The conversation on the Twitter Development Talk Google group.
* The REST API Changelog on this wiki (Subscribe to the RSS feed!).
sagar
clinisbut