Flask Redirect only works upon refreshing page












1














flask redirect is not redirecting to the new page. In my index function, upon logging in the redirect does not redirect to the user's homepage; however, it does redirect to the user's homepage upon refreshing the page and checking current_user.authenticated. I have the same exact redirect code in both if statements. Why is it not redirecting right after I login the user?



@login.user_loader
def load_user(user_id):
user = User()
username = user.get_username(str(user_id))
user = User(username = username, id = user_id)
return user

@app.route("/", methods=['GET', 'POST'])
def index():
if current_user.is_authenticated:
print('this redirect works')
return redirect(url_for('home', username = str(current_user.username)))
else:
username = str(request.form.get('user'))
password = str(request.form.get('password'))
user = User(username = username)
my_hash = user.get_password(username)
if user.check_password(my_hash, password):
my_id = user.get_user_id(username)
user = User(username = username, id = my_id)
login_user(user, remember=True)
print('this redirect doesnt work')
return redirect(url_for('home', username = str(current_user.username)))
return render_template('index.html')

@app.route("/<username>", methods=['GET', 'POST'])
@login_required
def home(username):
print('here')
if (str(request.form.get('signout')) == 'true'):
print('logout')
logout_user()
return redirect(url_for('index'))
return render_template('home.html')


Here is the console upon logging in a user 'a'



Serving Flask app "models" (lazy loading)

Environment: production

WARNING: Do not use the development server in a production environment.

Use a production WSGI server instead.

Debug mode: off

Running on http://127.0.0.1:8080/ (Press CTRL+C to quit)

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET / HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET /static/css/style.css HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET /static/scripts/jsx/signin.bundle.js HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:46] "GET /favicon.ico HTTP/1.1" 401 -

this redirect doesnt work

127.0.0.1 - - [20/Nov/2018 10:11:49] "POST / HTTP/1.1" 302 -

here

127.0.0.1 - - [20/Nov/2018 10:11:50] "GET /a HTTP/1.1" 200 -









share|improve this question
























  • What module you are using for login_user?
    – DarkSuniuM
    Nov 19 '18 at 23:11










  • It is the built in login_user function from flask.login DarkSuniuM. I know that it is working correctly as current_user.is_authenticated = True and in the rest of my functions, it knows who current_user is.
    – Jacob
    Nov 19 '18 at 23:15












  • Check if it redirects and again redirects to the same page, you can check using your browser's Developer console/Inspect element, or you can use a simple print statement in your home view
    – DarkSuniuM
    Nov 19 '18 at 23:19










  • I have editted my code with print statements. It was as you suspected, but why doesn't home.html render if it makes it into the home view?
    – Jacob
    Nov 20 '18 at 17:18






  • 1




    I'm sorry, I should have provided more information. I found out that the issue was with a POST request from an ajax call from my React front end. I found the answer her stackoverflow.com/questions/48015074/… Thank you for your help
    – Jacob
    Nov 20 '18 at 18:19
















1














flask redirect is not redirecting to the new page. In my index function, upon logging in the redirect does not redirect to the user's homepage; however, it does redirect to the user's homepage upon refreshing the page and checking current_user.authenticated. I have the same exact redirect code in both if statements. Why is it not redirecting right after I login the user?



@login.user_loader
def load_user(user_id):
user = User()
username = user.get_username(str(user_id))
user = User(username = username, id = user_id)
return user

@app.route("/", methods=['GET', 'POST'])
def index():
if current_user.is_authenticated:
print('this redirect works')
return redirect(url_for('home', username = str(current_user.username)))
else:
username = str(request.form.get('user'))
password = str(request.form.get('password'))
user = User(username = username)
my_hash = user.get_password(username)
if user.check_password(my_hash, password):
my_id = user.get_user_id(username)
user = User(username = username, id = my_id)
login_user(user, remember=True)
print('this redirect doesnt work')
return redirect(url_for('home', username = str(current_user.username)))
return render_template('index.html')

@app.route("/<username>", methods=['GET', 'POST'])
@login_required
def home(username):
print('here')
if (str(request.form.get('signout')) == 'true'):
print('logout')
logout_user()
return redirect(url_for('index'))
return render_template('home.html')


Here is the console upon logging in a user 'a'



Serving Flask app "models" (lazy loading)

Environment: production

WARNING: Do not use the development server in a production environment.

Use a production WSGI server instead.

Debug mode: off

Running on http://127.0.0.1:8080/ (Press CTRL+C to quit)

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET / HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET /static/css/style.css HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET /static/scripts/jsx/signin.bundle.js HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:46] "GET /favicon.ico HTTP/1.1" 401 -

this redirect doesnt work

127.0.0.1 - - [20/Nov/2018 10:11:49] "POST / HTTP/1.1" 302 -

here

127.0.0.1 - - [20/Nov/2018 10:11:50] "GET /a HTTP/1.1" 200 -









share|improve this question
























  • What module you are using for login_user?
    – DarkSuniuM
    Nov 19 '18 at 23:11










  • It is the built in login_user function from flask.login DarkSuniuM. I know that it is working correctly as current_user.is_authenticated = True and in the rest of my functions, it knows who current_user is.
    – Jacob
    Nov 19 '18 at 23:15












  • Check if it redirects and again redirects to the same page, you can check using your browser's Developer console/Inspect element, or you can use a simple print statement in your home view
    – DarkSuniuM
    Nov 19 '18 at 23:19










  • I have editted my code with print statements. It was as you suspected, but why doesn't home.html render if it makes it into the home view?
    – Jacob
    Nov 20 '18 at 17:18






  • 1




    I'm sorry, I should have provided more information. I found out that the issue was with a POST request from an ajax call from my React front end. I found the answer her stackoverflow.com/questions/48015074/… Thank you for your help
    – Jacob
    Nov 20 '18 at 18:19














1












1








1







flask redirect is not redirecting to the new page. In my index function, upon logging in the redirect does not redirect to the user's homepage; however, it does redirect to the user's homepage upon refreshing the page and checking current_user.authenticated. I have the same exact redirect code in both if statements. Why is it not redirecting right after I login the user?



@login.user_loader
def load_user(user_id):
user = User()
username = user.get_username(str(user_id))
user = User(username = username, id = user_id)
return user

@app.route("/", methods=['GET', 'POST'])
def index():
if current_user.is_authenticated:
print('this redirect works')
return redirect(url_for('home', username = str(current_user.username)))
else:
username = str(request.form.get('user'))
password = str(request.form.get('password'))
user = User(username = username)
my_hash = user.get_password(username)
if user.check_password(my_hash, password):
my_id = user.get_user_id(username)
user = User(username = username, id = my_id)
login_user(user, remember=True)
print('this redirect doesnt work')
return redirect(url_for('home', username = str(current_user.username)))
return render_template('index.html')

@app.route("/<username>", methods=['GET', 'POST'])
@login_required
def home(username):
print('here')
if (str(request.form.get('signout')) == 'true'):
print('logout')
logout_user()
return redirect(url_for('index'))
return render_template('home.html')


Here is the console upon logging in a user 'a'



Serving Flask app "models" (lazy loading)

Environment: production

WARNING: Do not use the development server in a production environment.

Use a production WSGI server instead.

Debug mode: off

Running on http://127.0.0.1:8080/ (Press CTRL+C to quit)

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET / HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET /static/css/style.css HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET /static/scripts/jsx/signin.bundle.js HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:46] "GET /favicon.ico HTTP/1.1" 401 -

this redirect doesnt work

127.0.0.1 - - [20/Nov/2018 10:11:49] "POST / HTTP/1.1" 302 -

here

127.0.0.1 - - [20/Nov/2018 10:11:50] "GET /a HTTP/1.1" 200 -









share|improve this question















flask redirect is not redirecting to the new page. In my index function, upon logging in the redirect does not redirect to the user's homepage; however, it does redirect to the user's homepage upon refreshing the page and checking current_user.authenticated. I have the same exact redirect code in both if statements. Why is it not redirecting right after I login the user?



@login.user_loader
def load_user(user_id):
user = User()
username = user.get_username(str(user_id))
user = User(username = username, id = user_id)
return user

@app.route("/", methods=['GET', 'POST'])
def index():
if current_user.is_authenticated:
print('this redirect works')
return redirect(url_for('home', username = str(current_user.username)))
else:
username = str(request.form.get('user'))
password = str(request.form.get('password'))
user = User(username = username)
my_hash = user.get_password(username)
if user.check_password(my_hash, password):
my_id = user.get_user_id(username)
user = User(username = username, id = my_id)
login_user(user, remember=True)
print('this redirect doesnt work')
return redirect(url_for('home', username = str(current_user.username)))
return render_template('index.html')

@app.route("/<username>", methods=['GET', 'POST'])
@login_required
def home(username):
print('here')
if (str(request.form.get('signout')) == 'true'):
print('logout')
logout_user()
return redirect(url_for('index'))
return render_template('home.html')


Here is the console upon logging in a user 'a'



Serving Flask app "models" (lazy loading)

Environment: production

WARNING: Do not use the development server in a production environment.

Use a production WSGI server instead.

Debug mode: off

Running on http://127.0.0.1:8080/ (Press CTRL+C to quit)

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET / HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET /static/css/style.css HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:45] "GET /static/scripts/jsx/signin.bundle.js HTTP/1.1" 200 -

127.0.0.1 - - [20/Nov/2018 10:11:46] "GET /favicon.ico HTTP/1.1" 401 -

this redirect doesnt work

127.0.0.1 - - [20/Nov/2018 10:11:49] "POST / HTTP/1.1" 302 -

here

127.0.0.1 - - [20/Nov/2018 10:11:50] "GET /a HTTP/1.1" 200 -






python flask






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 20 '18 at 17:57









DarkSuniuM

793919




793919










asked Nov 19 '18 at 20:33









JacobJacob

63




63












  • What module you are using for login_user?
    – DarkSuniuM
    Nov 19 '18 at 23:11










  • It is the built in login_user function from flask.login DarkSuniuM. I know that it is working correctly as current_user.is_authenticated = True and in the rest of my functions, it knows who current_user is.
    – Jacob
    Nov 19 '18 at 23:15












  • Check if it redirects and again redirects to the same page, you can check using your browser's Developer console/Inspect element, or you can use a simple print statement in your home view
    – DarkSuniuM
    Nov 19 '18 at 23:19










  • I have editted my code with print statements. It was as you suspected, but why doesn't home.html render if it makes it into the home view?
    – Jacob
    Nov 20 '18 at 17:18






  • 1




    I'm sorry, I should have provided more information. I found out that the issue was with a POST request from an ajax call from my React front end. I found the answer her stackoverflow.com/questions/48015074/… Thank you for your help
    – Jacob
    Nov 20 '18 at 18:19


















  • What module you are using for login_user?
    – DarkSuniuM
    Nov 19 '18 at 23:11










  • It is the built in login_user function from flask.login DarkSuniuM. I know that it is working correctly as current_user.is_authenticated = True and in the rest of my functions, it knows who current_user is.
    – Jacob
    Nov 19 '18 at 23:15












  • Check if it redirects and again redirects to the same page, you can check using your browser's Developer console/Inspect element, or you can use a simple print statement in your home view
    – DarkSuniuM
    Nov 19 '18 at 23:19










  • I have editted my code with print statements. It was as you suspected, but why doesn't home.html render if it makes it into the home view?
    – Jacob
    Nov 20 '18 at 17:18






  • 1




    I'm sorry, I should have provided more information. I found out that the issue was with a POST request from an ajax call from my React front end. I found the answer her stackoverflow.com/questions/48015074/… Thank you for your help
    – Jacob
    Nov 20 '18 at 18:19
















What module you are using for login_user?
– DarkSuniuM
Nov 19 '18 at 23:11




What module you are using for login_user?
– DarkSuniuM
Nov 19 '18 at 23:11












It is the built in login_user function from flask.login DarkSuniuM. I know that it is working correctly as current_user.is_authenticated = True and in the rest of my functions, it knows who current_user is.
– Jacob
Nov 19 '18 at 23:15






It is the built in login_user function from flask.login DarkSuniuM. I know that it is working correctly as current_user.is_authenticated = True and in the rest of my functions, it knows who current_user is.
– Jacob
Nov 19 '18 at 23:15














Check if it redirects and again redirects to the same page, you can check using your browser's Developer console/Inspect element, or you can use a simple print statement in your home view
– DarkSuniuM
Nov 19 '18 at 23:19




Check if it redirects and again redirects to the same page, you can check using your browser's Developer console/Inspect element, or you can use a simple print statement in your home view
– DarkSuniuM
Nov 19 '18 at 23:19












I have editted my code with print statements. It was as you suspected, but why doesn't home.html render if it makes it into the home view?
– Jacob
Nov 20 '18 at 17:18




I have editted my code with print statements. It was as you suspected, but why doesn't home.html render if it makes it into the home view?
– Jacob
Nov 20 '18 at 17:18




1




1




I'm sorry, I should have provided more information. I found out that the issue was with a POST request from an ajax call from my React front end. I found the answer her stackoverflow.com/questions/48015074/… Thank you for your help
– Jacob
Nov 20 '18 at 18:19




I'm sorry, I should have provided more information. I found out that the issue was with a POST request from an ajax call from my React front end. I found the answer her stackoverflow.com/questions/48015074/… Thank you for your help
– Jacob
Nov 20 '18 at 18:19












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382228%2fflask-redirect-only-works-upon-refreshing-page%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382228%2fflask-redirect-only-works-upon-refreshing-page%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith