Résultats plein texte:
- redirections
- : <code python> @app.route('/redirect-to-john-profile') def redirect_to_user(): return redirect(url_for('show_user_profile', user_id=110)) @app.route('/user/profile/<int:user_id>') def show_user_profile(user_id: int) : if not user_authenticaded(): return r
