Facebook AccountKit module for Server-side implementation. https://developers.facebook.com/docs/accountkit/
Project description
fb_accountkit
A simple python module for Facebook's AccountKit server-side implementations.
Dependencies
Installation
pip install fb-accountkit
Usage
from fb_accountkit import FBAccountKit
fbak = FBAccountKit(
'APP_ID',
'APP_secret',
version='v1.1'
)
# store token (user_access_token) to response back to client.
token_info = fbak.retrieve_user_access_token('auth_code_from_client')
# to validate token, call `get_user_session()`
print(fbak.get_user_session())
# to logout the user
fbak.logout()
# to logout all sessions (account_id must be provided)
me = fbak.get_user_session()
fbak.logout_all_session(me.get('id'))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file fb_accountkit-1.0.2-py3-none-any.whl
.
File metadata
- Download URL: fb_accountkit-1.0.2-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.5.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 600251d5c0af2950b2ee273943ccd3fd28024a7806773a65674d7b754e227e97 |
|
MD5 | 259be4410ec8f6f3f1287304708990c5 |
|
BLAKE2b-256 | bac198a23ba4f02dd5a7c180f640f4dab1e4b5102c5c52a93997c8ed0561849c |