I use the DRF extension for the se json list for the model, and there I can debug the GET request with the debug-toolbar , but how can I debug the POST and PUT requests?
I have this for settings in debug mode:
INSTALLED_APPS += ('debug_toolbar',) MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddleware',) DEBUG_TOOLBAR_PATCH_SETTINGS = False INTERNAL_IPS = ( '127.0.0.1' )
Now when I try to use Intercept redirects in the debug toolbar, it does not show me the toolbar when I do POST .
source share