English 中文(简体)
Chrome pop 流行,302 301 转头,用于连戈认证
原标题:Chrome extension popup, 302,301 redirect for django authentication

I have a chrome extension that when clicked, opens the popup which initiates an xmlhttprequest to a django website.

If the user is logged in, it displays a page and everything works fine. Else, it redirects the user (301) to the authentication page. This also works

This is where im stuck for a while: When the user submits the wrong credentials, the popup goes to the failed login page.(200) <- good If the credentials are correct, it seems as if nothing happens and the user is stuck on the login page even though there was a successful authentication and a cookie is set. in the background i can see that after the post there is a 302 redirect to the post authentication page. in django, the ?next page.

Any ideas as for why it happens? At first i thought it might be related to the 302 redirect so i changed the auth class to return 301 on a successful login but it didnt help.

最佳回答

The issue was that the first redirect came from the popup.html and the second one originated from the website. I had to move the login form to the popup.html file.

问题回答

暂无回答




相关问题
How to get two random records with Django

How do I get two distinct random records using Django? I ve seen questions about how to get one but I need to get two random records and they must differ.

Moving (very old) Zope/Plone Site to Django

I am ask to move data from a (now offline) site driven by Plone to a new Django site. These are the version informations I have: Zope Version (unreleased version, python 2.1.3 ) Python Version 2.1....

Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

Flexible pagination in Django

I d like to implement pagination such that I can allow the user to choose the number of records per page such as 10, 25, 50 etc. How should I go about this? Is there an app I can add onto my project ...

is it convenient to urlencode all next parameters? - django

While writing code, it is pretty common to request a page with an appended "next" query string argument. For instance, in the following template code next points back to the page the user is on: &...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

热门标签