[Answer]-HttpResponse object has no attribute get_absolute_url

1👍

A Django backend needs to either return a User object (or equivalent which would have get_absolute_url), or it needs to return None (here’s an example). Your authentication library should not be re-directing, that’s your views’ job.

Leave a comment