Skip to content

bright-spark/twitter-leaderboard

 
 

Repository files navigation

Twitter Leaderboard

Sample Django App that creates a leaderboard for a team's engagement and activity.

As always, when developing on top of the Twitter platform, you must abide by the Developer Agreement & Policy.

Deploy

Requirements

To run this sample code, you'll need to install the following libraries:

You can install these with the following command:

pip install -r requirements.txt

Getting Started

  • Create a Twitter App (https://apps.twitter.com/)

  • In the Twitter App config, ensure the Callback URL is http://127.0.0.1:9000/complete/twitter

  • Specify your database settings in app/settings.py. Be sure to uncomment the section for using a local database. (The default is set to easily deploy to Heroku.)

  • Specify your Twitter App tokens in app/settings.py:

    SOCIAL_AUTH_TWITTER_KEY = ''

    SOCIAL_AUTH_TWITTER_SECRET = ''

    TWITTER_ACCESS_TOKEN = ''

    TWITTER_ACCESS_TOKEN_SECRET = ''

  • To initialize your database, run the from the twitter-leaderboard directory:

    python manage.py syncdb

  • To start the server, run the following from the twitter-leaderboard directory:

    fab start

  • Open a browser and go to http://127.0.0.1:9000

Deploying to Heroku

Deploying to Heroku is even easier.

  • Create a Twitter App (https://apps.twitter.com/)

  • Click on the Heroku button below

  • When prompted during the Heroku install, specify your:

    • CONSUMER_KEY
    • CONSUMER_SECRET
    • ACCESS_TOKEN
    • ACCESS_TOKEN_SECRET
    • GNIP_PASSWORD
    • GNIP_SEARCH_ENDPOINT
    • GNIP_USERNAME
  • After deploying, in the Twitter App config, ensure the Callback URL is http://your-app-name.herokuapp.com/complete/twitter

  • To sync the database, use the Heroku CLI and run the following:

    heroku run python manage.py migrate --app your-app-name

  • Open a browser and go to the URL specified by your deploy (http://your-app-name.herokuapp.com)

  • To create an admin user, use the following Heroku CLI command:

    heroku run python manage.py createsuperuser --username=USERNAME --email=EMAIL --app your-app-name

Then log in via the Admin console and update your initial Twitter login user accordingly.

Deploy

NOTES

If you receive a 401 at login/twitter it is most likely caused by a datetime discrepancy between the server making the requst and the Twitter server.

Use NTP to sync time on your server to compensate for the dift.

If you are getting this error on OSX, toggle the "set time zone" checkbox off and back on in Date & Time system preferences for a manual and temporary fix. It has been reported that OSX 10.9 Mavericks has an issue with time drift.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 71.8%
  • CSS 19.6%
  • Python 5.1%
  • HTML 3.5%