Reputation: 515
I'm Trying to use Flask Debug toolbar with FlaskAPI. They don't seem to play well together. Even though FlaskAPI renders responses as HTML using it's browsable API renderer, debug toolbar still doesn't show up. Does anyone have any clue as to how to fix this ?
Upvotes: 0
Views: 964
Reputation: 6475
I met this problem when i integrate flask-debugtoolbar
with flask-security
. The output of flask debugger said: There is no <body>
tag find in that page. After i add <body>
tag to that page, the two extensions work together. Hope this will helpful.
Upvotes: 1