我在我的一個項目中使用了不錯的django-social-auth
。Django - SocialAuth登錄不離開頁面
基本上我希望能夠在不離開當前頁面的情況下登錄(甚至不刷新它)。
我想過乾脆在我的供應商使用target="_blank"
鏈接
<a href="{% url socialauth_begin service %}"
rel="nofollow" target="_blank">{{ service|title }}</a>
但是,當然,它是在成功登錄後重定向到默認位置。
有沒有辦法在成功時自動關閉這個新窗口,以便用戶獲得前一頁?
請注意['python-social-auth'](https://github.com/omab/python-social-auth)是我們現在應該使用的那個 –