Pythhon에서 Google Authenticator 설치 연습
2024 단어 PythonGoogleAuthenticator
개요
샘플 웹 응용 프로그램 정보
로컬 이동을 수행하려면
$ git clone [email protected]:shinsaka/googleauthenticator_demo.git
$ cd googleauthenticator_demo
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py runserver 0.0.0.0:8000
Heroku로 이동하는 순서.
<appname>
를 적당한 문자열로 바꾸어 실행$ git clone [email protected]:shinsaka/googleauthenticator_demo.git
$ cd googleauthenticator_demo
$ heroku apps:create <appname>
$ heroku git:remote --app <appname>
$ git push heroku master
$ heroku run --app <appname> python manage.py migrate
실제 편입 시
valid_totp()
방법을 사용해야 한다.Reference
이 문제에 관하여(Pythhon에서 Google Authenticator 설치 연습), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/shinsaka/items/108727b08834f755d7e7텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)