I have the django-two-factor-auth package working on my development server, I noticed however that the google authenticator app shows the ip:port after scanning the QR code. Is there a way to set the issuer to something else?
I have the django-two-factor-auth package working on my development server, I noticed however that the google authenticator app shows the ip:port after scanning the QR code. Is there a way to set the issuer to something else?
It seems that django-two-factor-auth uses the function
django.contrib.sites.shortcuts.get_current_siteto determine the issuer.In order to change the value of the issuer you need to change the
namefield of the existingSiteobject with your desired value, this can be done through the django admin site.