j'utilise l'URL de redirection http:\localhost:9874 mais ça ne fonctionne pas. Que je dois faire? J'utilise une application Desktop et je veux profiter de l'API pour envoyer des factures. j'utilise l'URL de redirection http:\localhost:9874 mais ça ...
from app import create_app app = create_app() @app.route('/') def homepage(): return 'hello world' if __name__ == '__main__': app.run(host='localhost', port=9874) 评论中建议的另一个解决方案是检查 127.0.0.1 是否解析为 localhost 通过键入此命令找到主机文件,并检查你是否有与我相...