Bootle authentication, for Personal, Google, Twitter and facebook.
Project description
Bottle plugin authentication, support with Google, Twitter and Facebook
Example
from bottle import Bottle, redirect, request, run
from bottle.ext import auth
from bottle.ext.auth.decorator import login
from bottle.ext.auth.social.facebook import Facebook, UserDenied
from bottle.ext.auth.social.facebook import NegotiationError
from pprint import pformat
facebook = Facebook('fb-key', 'fb-secret',
'http://127.0.0.1:8000/', 'email')
app = Bottle()
plugin = auth.AuthPlugin(facebook)
app.install(plugin)
@app.route('/login')
def login(auth):
return auth.redirect(request.environ)
@app.route('/')
@login(auth)
def home():
user = auth.get_user(request.environ)
return "Home page {}".format(pformat(user))
run(app=app, host='0.0.0.0', port='3333', debug=True)
Application in production: https://github.com/avelino/mining/blob/master/auth.py
Create project
Sign into your Google Apps account in your browser
Visit https://code.google.com/apis/console#access in the same browser
On the left menu, Create a new Project
To start, you don’t need any Services, so select the API Access tab rom the left menu and “Create an OAuth 2.0 client ID…”
Fill out the Client ID form for a web application and use localhost:8000 as your hostname
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bottle-auth-0.3.3.tar.gz
(23.1 kB
view hashes)