Skip to content

Instantly share code, notes, and snippets.

@farazdagi
Created July 18, 2011 15:54
Show Gist options
  • Save farazdagi/1089923 to your computer and use it in GitHub Desktop.
Save farazdagi/1089923 to your computer and use it in GitHub Desktop.
JSONP in Flask
import json
from functools import wraps
from flask import redirect, request, current_app
def support_jsonp(f):
"""Wraps JSONified output for JSONP"""
@wraps(f)
def decorated_function(*args, **kwargs):
callback = request.args.get('callback', False)
if callback:
content = str(callback) + '(' + str(f().data) + ')'
return current_app.response_class(content, mimetype='application/json')
else:
return f(*args, **kwargs)
return decorated_function
# then in your view
@default.route('/test', methods=['GET'])
@support_jsonp
def test():
return jsonify({"foo":"bar"})
@danriti
Copy link

danriti commented Sep 7, 2012

fantastic! nicely done =)

@jarrekk
Copy link

jarrekk commented Dec 25, 2016

@aisipos
Based on your gist, I edit some place to make json response can contain status code, please see my fork https://gist.github.com/JiaKunUp/a9df722bad15c61ea555fa860997edc9

@felixzhooou
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment