Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gi0baro/weppy-fbauth
Facebook login interface for weppy framework
https://github.com/gi0baro/weppy-fbauth
Last synced: 8 days ago
JSON representation
Facebook login interface for weppy framework
- Host: GitHub
- URL: https://github.com/gi0baro/weppy-fbauth
- Owner: gi0baro
- Created: 2014-10-20T22:01:50.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-27T10:08:16.000Z (almost 10 years ago)
- Last Synced: 2024-09-19T00:24:07.180Z (about 2 months ago)
- Language: Python
- Size: 133 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# weppy-FBAuth
weppy-FBAuth is an extension for [weppy framework](http://weppy.org) providing a simple interface to manage logins with Facebook authentication.
## Installation
You can install weppy-FBAuth using pip:
pip install weppy-FBAuth
And add it to your weppy application:
```python
def get_facebook_user(user):
# code to process the user from oauth servicefrom weppy_fbauth import FBAuth
app.config.FBAuth.client_id = ""
app.config.FBAuth.client_secret = ""
app.config.FBAuth.get_user = get_facebook_userapp.use_extension(FBAuth)
```## Documentation
The documentation will be soon available.