That's how browsers handle the application/jsonp MIME type. If you want to see it in your browser, try changing the Content-Type to:
response.headers['Content-Type'] = 'text/plain' Not sure if the JSONP consumer will process it correctly, though. --
That's how browsers handle the application/jsonp MIME type. If you want to see it in your browser, try changing the Content-Type to:
response.headers['Content-Type'] = 'text/plain' Not sure if the JSONP consumer will process it correctly, though. --