Moodle Plugins directory: Microsoft Account | Moodle.org
Microsoft Account
Note: official support for this plugin has stopped
Moodle plugins for Microsoft Services
including Office 365 and other Microsoft services
Microsoft Account API Local Plugin
This plugin provides a simple client API for OAuth2-based authentication and token management for Microsoft Account. It also provides some helper functions for making REST API calls to services that use the Microsoft Account.
Usage
Instantiation:
$msaccountapi = msaccount_api::getinstance();
Logging the user in:
$msaccount_api->is_logged_in();
Making a REST API call:
$response = $msaccount_api->myget($url);
Design details
There are several parts that make up the Microsoft Account API plugin.
Configuration
This allows an administrator to specify OAuth2 settings such as client id and secret for the Microsoft Account application associated with this Moodle installation.
msaccount_api class
This is a singleton class that provides simple wrappers for various methods provided by the msaccount_client class. Please use this class for accessing all the functionality provided by the msaccount_client class.
msaccount_client class
Note: Please do not use this class directly. Instead, use the msaccount_api class described above.
This class is derived from Moodle's oauth2_client class and:
- Adds support for retrieving and saving refresh tokens and logging in using the refresh token if the main token expires.
- This also becomes useful for automated unit testing because we can use the refresh tokens to log users in automatically.
- Works around an issue in the oauth2_client where it sets the token in the header only if it thinks that it is making a post request, but the Microsoft Account REST API needs auth token in the header for get as well as post requests.
This is part of the suite of Microsoft Services plugins for Moodle.
This plugin is updated with stable releases. To follow active development, see: https://github.com/Microsoft/o365-moodle
Contributing
Before we can accept your pull request, you'll need to electronically complete Microsoft's Contributor License Agreement. If you've done this for other Microsoft
projects, then you're already covered.
Why a CLA? (from the FSF)
Copyright
(c) Microsoft, Inc. Code for this plugin is licensed under the GPLv3 license.
Any Microsoft trademarks and logos included in these plugins are property of Microsoft and should not be reused, redistributed, modified, repurposed, or otherwise altered or used outside of this plugin.
I got an error : Can't use function return value in write context in moodle/local/msaccount/classes/client.php on line 62
I solved it by doing this at the function that made the error at line 62:
public static function is_configured() {
$get_client_id = get_config('local_msaccount', 'clientid'); // New code
$get_client_secret = get_config('local_msaccount', 'clientsecret'); // New code
if ( $get_client_id == '' || $get_client_secret == '') {
return false;
}
return true;
}
I hope you can confirm the error and the solution
Kind regards
Henrik Sune Pedersen