Pyramid routes and helpers for Facebook canvas applications
Project description
Provides simple pyramid routes/views for facebook canvas application.
Some documentation on http://pyramid_facebook.rtfd.org
Configuration
Create facebook application on https://developers.facebook.com/apps
Add facebook settings in .ini file under application section and fill with facebook application parameters:
facebook.app_id = facebook.secret_key = facebook.namespace = facebook.scope =
In the app settings on https://developers.facebook.com/apps, set callbak url to point to
http://127.0.0.1:6543/[facebook app namespace]/
Include pyramid_facebook in your config:
config.include('pyramid_facebook') config.scan()
Define your facebook canvas view:
from pyramid_facebook.canvas import facebook_canvas @facebook_canvas() def canvas(context, request): # canvas is available only to users who accepted facebook permission # defined in setting['facebook.scope']. # context.facebook_data dict contains signed_request content. # i.e.: # user_id = context.facebook["user_id"] ... return Response('Hello Facebok World')
Browse to your app on
http://apps.facebook.com/[app namespace]
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 Distribution
pyramid_facebook-0.2.235.tar.gz
(22.8 kB
view details)
File details
Details for the file pyramid_facebook-0.2.235.tar.gz
.
File metadata
- Download URL: pyramid_facebook-0.2.235.tar.gz
- Upload date:
- Size: 22.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7808df07acc80ae1334cc43302c4cd1fd00cb62bcabc4712ded5e15f3dc6c7bf |
|
MD5 | 97da501b3d5a1709c4796f9490c455e6 |
|
BLAKE2b-256 | 3fb85b27e160e8660426c7a9bbca5d2c8d5e2f10c24241f846b71b1098a3a6b2 |