TweetFire URL Scheme: ALL methods take an optional "account" or "account_id" parameter. - account: screen_name of user - account_id: id number of user this will associate the URL call with the appropriate user account in the app in the case that they have signed in with several accounts. if neither is specified, it will default to the currently active user of the app ================== "post" tweetfire://post - message (optional): text of tweet - MUST be urlencoded - in_reply_to_status_id (optional): id of tweet being replied to example: tweetfire://post?message=hello%20world ================== "user" tweetfire://user - screen_name: screen_name of profile to load - id: user id of profile to load note* one of screen_name OR id is required example: tweetfire://user?screen_name=jazzychad ================== "status" tweetfire://status - id (required): id of the tweet to display example: tweetfire://status?id=12345 ================== "search" tweetfire://search - query (required): query to search for in twitter - MUST be urlencoded example: tweetfire://search?query=favstar ================== "quote" tweetfire://quote - message (required): message of tweet - MUST be urlencoded - screen_name (required): screen_name of user to quote example: tweetfire://quote?message=hello%20world&screen_name=jazzychad ================== "retweet" tweetfire://retweet - status_id (required): id of tweet to rewet example: tweetfire://retweet?status_id=12345 ================== "url" tweetfire://url - url (required): URL to load in the in-app browser - MUST be urlencoded example: tweetfire://url?url=http%3A%2F%2Fwww.google.com%2F ================== "messages" tweetfire://messages - screen_name (optional): screen_name of user to show DM conversation - id (optional): id of user to show DM conversation note* if screen_name nor id are not specified, the root DM conversation list is shown instead example: tweetfire://messages?screen_name=timhaines ================== "favorite" tweetfire://favorite - status_id (required): the status id to favorite for the user example: tweetfire://favorite?status_id=12345 ================== "unfavorite" tweetfire://unfavorite - status_id (required): the status id to favorite for the user example: tweetfire://unfavorite?status_id=12345 ================== "follow" tweetfire://follow - id (required): user id of person to follow for user example: tweetfire://follow?id=67890 ================== "unfollow" tweetfire://unfollow - id (required): user id of person to unfollow for user example: tweetfire://unfollow?id=67890 ==================