cakephp-opauth
cakephp-opauth copied to clipboard
Opauth plugin for CakePHP v2.x, allowing simple plug-n-play 3rd-party authentication with CakePHP
Why on earth? If I pull down the repo, I can't add submodules to the Strategy/ folder because of the .gitignore file. Also, is it possible to add the Google...
Re: https://twitter.com/t1mmen/status/441512918950359040 When [FriendOfCake's Crud plugin](https://github.com/FriendsOfCake/crud) is loaded, Opath no longer works, giving the error message: "No model loaded in the Controller by the name "Opauth". Please add it to...
This plugin uses a redirection (to /opauth-complete) to let you handle authenticated users data and try to identify them against your database. Thus anyone sending a post request with consistent...
Ubuntu 13.10, Apache2, PHP, Mysql Configuration. Using CakePHP 2.5.1 Using latest cakephp-opauth component Was working before system upgrade from Ubuntu 12 to Ubuntu 13.10 Php allow_fopen is set to On....
Since validation is taken care of in the plugin itself, is it not very easy to just do the following to fake the validation? ```
I note that in OpAuth there is an Auth response array. https://github.com/opauth/opauth/wiki/Auth-response I was wondering if there is a way to retrieve the same thing using the CakePHP OpAuth Plugin?
Hi, I'm curious about the best way to set the referring URL after a successful third party login, at the moment I'm setting a session variable but I feel like...
Lines 110 and 111 in `Controller/OpauthAppController` https://github.com/uzyn/cakephp-opauth/blob/master/Controller/OpauthAppController.php#L110 ``` $completeUrl = Configure::read('Opauth._cakephp_plugin_complete_url'); if (empty($completeUrl)) $completeUrl = Router::url('/opauth-complete'); ``` are currently useless. Is there a way to restore the concept of a...