Oauth2 authentication plugin for Moodle (for Moodle 3.2 and earlier) icon

Oauth2 authentication plugin for Moodle (for Moodle 3.2 and earlier)

Maintained by Sergio Rabellino
Sign-in with an Oauth2 provider. The first time you sign-in, a new account is created.
Price option: Free

Supports Moodle 2.1-3.2 See all versions
Latest release: 7 years ago
Installations: 416
Downloads (last 90 days): 41

Frankenstyle name: auth_googleoauth2
Authentication
OAuth2

Comments

Comments are no longer open for new posts. Existing comments remain available to read.

You can get all the required information here: http://oauth2-client.thephpleague.com/
Where can if ind documentation about adding my own vendor. I am using the product for a project i am doing and they have their own method (very similar to all other methods) but i don't understand the league reference. Could someone pleas direct me in the correct direction?
Thanks to Jerome for the time spent in developing this useful plugin. I hope that he will be always here (or around) to control my baby-sitting work,..
For the other people, stay tuned! I've done the phpleague plugin update, soon available on github and in download...
Hi guys
Due to lack of time, I hand over the plugin maintenance to Sergio Rabellino. Sergio is a well known Moodler and he will be more than qualified to maintain the plugin.
Sergio accepted to maintain the plugin until the Oauth2 core plugin stabilises. So you should have time to move over to the Oauth2 core plugin introduced in Moodle 3.3 - we expect you to have moved to it by mid 2019.
We transfered the official repository from my Github account to his Github account there: https://github.com/rabser/moodle-auth_googleoauth2. So if you are using Github, there will be no impact for you as Github should automatically redirect the previous git repository url to the new one.
I would like to thank Sergio to take over, I really appreciate it, and I wish you all the best in your new adventure as maintainer.
I also thank Moodle HQ that allowed me to work on the plugin during a project week, Guillermo from rewrite.com.ar (the unique donator in 5 years), the Moodle Partner Elearning Experts LLC. to have contracted me to update the code to support a Google API change, and also all the contributors.
Kind Regards to everyone,
Jerome Mouneyrac

I am happy to announce that this plugin has been adopted! The new maintainer is Sergio Rabellino, the head of the ICT services of the University of Turin. Good luck and thanks for keeping this plugin supported!

The lastest release is NOT Release 2.3 (Build: 2016061204), plz check!
Hi guys,
Help me!
Most of my users log in my site via facebook and gmail. Unfortunately, neither of them works when I upgrade this plugin to Release 2.3 (Build: 2016061204). I know "The plugin stopped working the 27th March 2017 as Facebook closed the API 2.2. The last versions of this plugin have been updated to support Facebook 2.8 API". My App's API version 2.3, when I upgrade API, it says; Your app hasn't made enough calls to the Graph API to show any info, or there are no changes for the methods you selected between v2.3 and v2.8.
Now my site is using release 2.3 (Build: 2016061202) and only gmail works.
Any suggestions are apprecited.
I'm using moodle 3.2.2
I pushed a new version for 2.5 and 2.6 to fix the Facebook login (thanks to Sergio and Damyon, see https://github.com/mouneyrac/moodle-auth_googleoauth2/issues/231). I tested on my local machine but I didn't have an already set 2.5 and 2.6 site with the old Facebook API, so even thought I think it works, carefully test before upgrading your prod. (anyway I think all these versions are not supported anymore by HQ so you should really upgrade your Moodle site!)
Hi guys, I just added a new version with the fix for Facebook authentication provided by Damyon Wiese. Hopefully we wil have 2.6 and 2.5 soon, keep up to date on the tracker issue: https://github.com/mouneyrac/moodle-auth_googleoauth2/issues/231
Is there any way I can continue to use this awesome plugin for Facebook Login? As given in the description I understand that Facebook has deprecated Graph API 2.2 by March 27th. Our website has a Facebook-login-only system and users have not been able to login. No other plugin on plugin directory is helping to achieve the cause. It would be great if someone can point in the right direction.
the above script works but inside the echo " "; was meant to be echo " < pre >"; and echo " < /pre > " without the whitespace in the " "
Hi guys
I did try to fix the Facebook issue again, trying to upgrade the phpleague lib to a more recent version (without even trying the last phpleague 2.X version, just the last 1.X version so refactoring would be minimum) but it would still mean rechecking all providers and likely doing some refactoring. I don't have the time for that right now, sorry sad
However I created a quick script to know who is using Facebook and so you can alert your users. You need to put the code in a .php file in your Moodle root folder and access it from your browser (of course delete the file once you ran it and so know who is using facebook to login).
require_once('config.php');
$facebook_users = array();
$facebook_logins = $DB->get_records('auth_googleoauth2_logins', array('subtype' => 'facebook'));
foreach($facebook_logins as $facebook_login) {
if (empty($facebook_users[$facebook_login->userid])) {
$facebook_users[$facebook_login->userid] =
$DB->get_record('user', array('id' => $facebook_login->userid), 'id, username, email, firstname, lastname, lastlogin');
$facebook_users[$facebook_login->userid]->lastlogindate = date('Y-m-d H:i:s', $facebook_users[$facebook_login->userid]->lastlogin);
}
}
echo count($facebook_users) . " googleoauth2 facebook user(s)";
echo "
";
print_r($facebook_users);
echo "
";
Are you available to work on this if I give you access and what would that cost? craig@growdly.com is my email.
in my last comment " In any case" should be read "would you go this way".
Hi Craig, unfortunately only someone with a minimum of administration experience can access the information about who use what. Maybe your administrator installed something like phpmyadmin which allows you to access the database table from a web interface (but if you don't not what you are doing you probably want to stay away from touching the DB). In any case you want to have a look at the tables mentioned in https://github.com/mouneyrac/moodle-auth_googleoauth2/blob/master/db/install.xml