SyntaxFix
Write A Post
Hire A Developer
Questions
In your flask code, you should ideally specify the MIME type as often as possible, as well:
return html_page_str, 200, {'ContentType':'text/html'} return json.dumps({'success':True}), 200, {'ContentType':'application/json'}
...etc