From fc1262956247fd33f07b64524060b145f3f477a9 Mon Sep 17 00:00:00 2001 From: ryanmcgrath Date: Mon, 13 Sep 2010 02:21:38 -0700 Subject: [PATCH] Migrated from overview-intro v4 --- Overview-(Intro).textile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Overview-(Intro).textile b/Overview-(Intro).textile index 405fdee..1fe34cf 100644 --- a/Overview-(Intro).textile +++ b/Overview-(Intro).textile @@ -16,11 +16,12 @@ twitter = tango.setup() # Using Basic Authentication twitter = tango.setup(authtype="Basic", username="example", password="example") -# Using OAuth Authentication (Note: OAuth is the default, specify Basic if needed) Currently in development +# Using OAuth Authentication (Note: OAuth is the default, specify Basic if needed) auth_keys = {"consumer_key": "yourconsumerkey", "consumer_secret": "yourconsumersecret"} twitter = tango.setup(username="example", password="example", oauth_keys=auth_keys) # Using Basic Authentication and adding custom HTTP Headers -twitter = tango.setup(authtype="Basic", username="example", password="example", headers="your_headers_here") +twitter = tango.setup(authtype="Basic", username="example", + password="example", headers="your_headers_here") \ No newline at end of file