Google Two-factor Authentication Tutorial for Codeigniter - codeigniter-2

Does anyone know a good Google Two-factor Authentication tutorial for Codeigniter?

Here tutsplus Integrating Two-Factor Authentication with CodeIgniter
http://net.tutsplus.com/tutorials/php/integrating-two-factor-authentication-with-codeigniter/

Related

Okta social authentication with angular and spring

I have downloaded that example:
https://github.com/mraible/okta-spring-boot-angular-example
it works fine but I have no clue how to to authenticate with facebook or microsoft account? Is there any working example with that identity providers or can someone tell me what to do?
I have found example at okta website how to configure that in dashboard and at microsoft developer account but I don't know how to redirect from my webpage to site where I can sign in using microsoft account not okta account.
Thanks in advance
Once you configure IDP using this. At the end, they give you options for integration. For example, if you are looking to integrate Facebook, at the end of the guide they give you an html button you integrate with your apps or if you are using Okta's sign-in widget. It shows how to do so.

Laravel Login without auth

I am very beginner in laravel. I want to create a login registration with my own code without using the laravel auth.
Yes. This is very possible. There are many authentication packages you can reference and guides to follow for auth in PHP. I highly suggest you implement Laravel's authentication scaffolding and learn how it works in order to build your own. It's really awesome! I provided links to a poplar authentication package you can study through and a tutorial below.
https://github.com/panique/huge
https://www.tutorialrepublic.com/php-tutorial/php-mysql-login-system.php

How to make a 'log in with Spotify' authentication system using Firebase?

I have a web page which I want to make it only available to users after they log-in using their Spotify account. I am using Firebase for backend.
I haven't implemented any social authentication before, so an in-depth answer will be much appreciated.
There is a great exemple to implement Firebase auth with Instagram Oauth. It will be exactly the same for Spotify.
Read it here : Authenticate your Firebase users with Instagram
edit: And now there is also a sample for auth with Spotify + Firebase functions

Is using Passport authentication for my ASP.NET site secure? What are the other pros and cons?

I have been having a look at secure and 'correct' ways of handling authentication within my ASP.NET site and have found the Passport Authentication Provider.
http://msdn.microsoft.com/en-us/library/f8e50t0f%28v=vs.71%29.aspx
I've done some research but I'm still skeptical about this being a good idea, does anyone have any other opinion? Have you tried this out before?
Passport is an old technology. You might want to use the newer ASP.NET Identity infrastructure for authentication, authorization etc.

Google+ for A3M CodeIgniter

I'm currently running A3M for CodeIgniter which can be found here: https://github.com/donjakobo/A3M
For those who don't know, A3M is an account authentication system which utilises Facebook, OpenID, Twitter and Google.
What A3M doesn't support though is the new Google+ API found here: https://developers.google.com/+/quickstart/php
Does anyone know of an existing solution/fork to A3M which supports the Google+ API or how I could go about adjusting the current Google Account Authentication to use the Google+ authentication instead?
There is an open issue on A3M for this on GitHub: https://github.com/donjakobo/A3M/issues/37
Follow that for any official update.

Resources