wai-extra-3.1.13.0: Provides some basic WAI handlers and middleware.
CopyrightMichael Snoyman
LicenseBSD3
MaintainerMichael Snoyman <michael@snoyman.com>
StabilityUnstable
Portabilityportable
Safe HaskellSafe-Inferred
LanguageHaskell2010

Network.Wai.Middleware.Jsonp

Description

Automatic wrapping of JSON responses to convert into JSONP.

Synopsis

Documentation

jsonp :: Middleware Source #

Wrap json responses in a jsonp callback.

Basically, if the user requested a "text/javascript" and supplied a "callback" GET parameter, ask the application for an "application/json" response, then convert that into a JSONP response, having a content type of "text/javascript" and calling the specified callback function.