diff --git a/Status-Methods.textile b/Status-Methods.textile new file mode 100644 index 0000000..74a6919 --- /dev/null +++ b/Status-Methods.textile @@ -0,0 +1,20 @@ +h2. Status methods + +The methods below deal with showing, updating, and deleting status messages on Twitter. + + +h3. showStatus() +* id: (Required) The numerical ID of the status to retrieve. + +
+
+import tango
+
+# Instantiate with no Auth - Auth might be needed if user is protected
+twitter = tango.setup()
+status = twitter.showStatus("123")
+
+print status["text"]
+
+
+ \ No newline at end of file