0

I want to integrate a oauth 2.0 server system to access my login externally

I found CodeIgniter-OAuth-2.0-Server in internet but that code seems to be deprecated. It would be a bad idea to integrate it with my codeigniter?

You know of some other project oauth 2.0 server for my codeigniter?

much thanks

Dan
  • 2,086
  • 11
  • 71
  • 137
50l3r
  • 1,549
  • 4
  • 16
  • 27

1 Answers1

11

This php server is very good and up to date https://github.com/bshaffer/oauth2-server-php, and very well documented http://bshaffer.github.io/oauth2-server-php-docs/

You have to do yourself the implementation with codeigniter, but i think that is the best way

For more information take look at : http://oauth.net/2/

Jice06
  • 221
  • 2
  • 4
  • how can compile all php files in my codeigniter? Isn't there an easier way? – 50l3r Jan 16 '14 at 15:05
  • 2
    Almost everything is on this link: http://bshaffer.github.io/oauth2-server-php-docs/cookbook/ You install the server and you create server.php as library codeigniter then you just have to create controllers that load the librery server.php – Jice06 Jan 16 '14 at 15:28
  • I'm new to Codeigniter, is there any such existing library which I can use? I have found few but they are not working perfectly and too old. – Parth Vora Jul 24 '17 at 10:04