From a73a9ce82526c59c16e35d1e84bf11f83a01d854 Mon Sep 17 00:00:00 2001 From: Charles Connell Date: Fri, 3 Jan 2014 14:39:06 -0500 Subject: [PATCH] Document twitter secrets better --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 23227b4..8ef77dc 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,19 @@ access token key and secret are needed by the software. If the required files are not found, then no errors will occur. +To set this up, create a new Twitter application at https://dev.twitter.com/apps/new. +Make sure this application has read/write access. Generate an access token. Go to your +OAuth settings, and grab the "Consumer key", "Consumer secret", "Access token", and +"Access token secret". + +Create a file at karmaworld/secret/twitter.py, and enter these tokens. For example, +``` +CONSUMER_KEY = '???' +CONSUMER_SECRET = '???' +ACCESS_TOKEN_KEY = '???' +ACCESS_TOKEN_SECRET = '???' +``` + # Development Install If you need to setup the project for development, it is highly recommend that -- 2.25.1