This Choreo retrieves a collection of the most recent Tweets posted by the user whose screen_name or user_id is indicated. The documentation for this Twitter resource can be found here.
Here's an example of acceptable inputs:
ConsumerKey: {YOUR CONSUMER KEY}
 ConsumerSecret {YOUR CONSUMER SECRET}
 AccessToken: {YOUR ACCESS TOKEN}
 AccessTokenSecret: {YOUR TOKEN SECRET}
The following is a sample of the JSON information returned by this Choreo:
[
    {
        "created_at": "Fri Oct 19 22:44:25 +0000 2012",
        "id": 259424792715874300,
        "id_str": "259424792715874305",
        "text": "hello",
        "source": "<a href=\"http://www.temboo.com\" rel=\"nofollow\">Temboo</a>",
        "truncated": false,
        "in_reply_to_status_id": null,
        "in_reply_to_status_id_str": null,
        "in_reply_to_user_id": null,
        "in_reply_to_user_id_str": null,
        "in_reply_to_screen_name": null,
        "user": {
            "id": 97731133,
            "id_str": "97731133",
            "name": "Temboo QA",
            "screen_name": "qatemboo",
            "location": "",
            "description": "",
            "url": null,
            "entities": {
                "description": {
                    "urls": []
                }
            },
            "protected": false,
            "followers_count": 3,
            "friends_count": 2,
            "listed_count": 0,
            "created_at": "Fri Dec 18 19:23:06 +0000 2009",
            "favourites_count": 0,
            "utc_offset": -18000,
            "time_zone": "Quito",
            "geo_enabled": false,
            "verified": false,
            "statuses_count": 27,
            "lang": "en",
            "contributors_enabled": false,
            "is_translator": false,
            "profile_background_color": "C0DEED",
            "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png",
            "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png",
            "profile_background_tile": false,
            "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
            "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_3_normal.png",
            "profile_link_color": "0084B4",
            "profile_sidebar_border_color": "C0DEED",
            "profile_sidebar_fill_color": "DDEEF6",
            "profile_text_color": "333333",
            "profile_use_background_image": true,
            "default_profile": true,
            "default_profile_image": true,
            "following": false,
            "follow_request_sent": false,
            "notifications": false
        },
        "geo": null,
        "coordinates": null,
        "place": null,
        "contributors": null,
        "retweet_count": 0,
        "entities": {
            "hashtags": [],
            "urls": [],
            "user_mentions": []
        },
        "favorited": false,
        "retweeted": false
    }
]