abendleiter / django-fb-iframe

A small Django app to prevent CSRF request errors by a Facebook iframe.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Facebook iFrame

Django and Facebook do not get along. When embedding a microsite into Facebook it will call an iframe with a POST request. Of course your Django project will return a CSRF verification failed.

This little Django app will prevent that specific error by converting a POST request with the key signed_request to a GET request. Of course this is just plain ugly, but Facebook should not mess with our application.

Installation

Install django-fb-iframe with pip:

$ pip install django-fb-iframe

Configuration

In your settings module...

  • Add fb_iframe to INSTALLED_APPS
  • Add fb_iframe.middleware.FacebookMiddleware to MIDDLEWARE_CLASSES

Note

You need to make sure that you place the FacebookMiddleware before the CSRF protection middleware.

Credits

This app contains a snippet of fandjango's middleware.

About

A small Django app to prevent CSRF request errors by a Facebook iframe.


Languages

Language:Python 100.0%