Bitcoin Forum

Other => Off-topic => Topic started by: vicktor on January 12, 2017, 11:54:52 AM



Title: Google Two Factor Authentication
Post by: vicktor on January 12, 2017, 11:54:52 AM
How to implement google two factor authentication for a web application?
I am trying to create a web app where the login module requires 2FA


Title: Re: Google Two Factor Authentication
Post by: legendbtc on January 12, 2017, 12:02:44 PM
How to implement google two factor authentication for a web application?
I am trying to create a web app where the login module requires 2FA


There are different techniques you can activate your google 2fa
Open Gmail and go to your account settings.
Then go to security.
Click Start Setup. Here you need to enter your mobile number in order to get text.
You'll get a text-message on your cellphone with a code. You need to enter the code which you received in your mobile.
Click Next.
Click Confirm.



Title: Re: Google Two Factor Authentication
Post by: vicktor on January 12, 2017, 12:13:01 PM
How to implement google two factor authentication for a web application?
I am trying to create a web app where the login module requires 2FA


There are different techniques you can activate your google 2fa
Open Gmail and go to your account settings.
Then go to security.
Click Start Setup. Here you need to enter your mobile number in order to get text.
You'll get a text-message on your cellphone with a code. You need to enter the code which you received in your mobile.
Click Next.
Click Confirm.


This process is for Activating the 2FA for google account.
I want to implant this 2FA in my Login page on my own private domain, so that user get Authenticated.


Title: Re: Google Two Factor Authentication
Post by: ETCethereum on January 12, 2017, 07:24:58 PM
How to implement google two factor authentication for a web application?
I am trying to create a web app where the login module requires 2FA


There are different techniques you can activate your google 2fa
Open Gmail and go to your account settings.
Then go to security.
Click Start Setup. Here you need to enter your mobile number in order to get text.
You'll get a text-message on your cellphone with a code. You need to enter the code which you received in your mobile.
Click Next.
Click Confirm.



i think is deference OP not ask gmail account to make use 2fa
but ask script php implementation to web page in login use 2fa


Title: Re: Google Two Factor Authentication
Post by: kolloh on January 13, 2017, 04:06:45 AM
It all depends on what language you are using.  Check out https://github.com/PHPGangsta/GoogleAuthenticator if you are using PHP and you should be able to accomplish what you are looking to do.


Title: Re: Google Two Factor Authentication
Post by: legendbtc on January 13, 2017, 06:05:34 AM
How to implement google two factor authentication for a web application?
I am trying to create a web app where the login module requires 2FA


There are different techniques you can activate your google 2fa
Open Gmail and go to your account settings.
Then go to security.
Click Start Setup. Here you need to enter your mobile number in order to get text.
You'll get a text-message on your cellphone with a code. You need to enter the code which you received in your mobile.
Click Next.
Click Confirm.


This process is for Activating the 2FA for google account.
I want to implant this 2FA in my Login page on my own private domain, so that user get Authenticated.

Yes i am not familer with web application, for activating web application it is some what difficult job may be. It's better why don't you google it and find out whether you will get any suitable answers for you may be.


Title: Re: Google Two Factor Authentication
Post by: yueno on January 13, 2017, 10:52:22 AM
How to implement google two factor authentication for a web application?
I am trying to create a web app where the login module requires 2FA

2FA is good to secure your account from hackers. Me i have 2fa in gmail.com as well as coins.ph but i have google authenticator to not send number in my cellphone number.


Title: Re: Google Two Factor Authentication
Post by: vicktor on January 13, 2017, 02:04:46 PM
How to implement google two factor authentication for a web application?
I am trying to create a web app where the login module requires 2FA

2FA is good to secure your account from hackers. Me i have 2fa in gmail.com as well as coins.ph but i have google authenticator to not send number in my cellphone number.

For keeping your personal account safe by using 2FA is good but i am providing platform to user so i want to verify or we can say authenticate user through 2FA.


Title: Re: Google Two Factor Authentication
Post by: SkycityVictorians on January 21, 2017, 10:03:56 PM
There a different ways to implement 2FA for you application.

If you are using PHP, here is a good example: https://github.com/akrabat/slim-2fa
  here for NodeJS / Express: https://www.npmjs.com/package/passport-2fa-totp

Just google, "Google 2FA *Programming Language*"

Friendly Regards
- SkycityVictorians