Hinweis: Sie sind auf den Seiten der Moodle 3.3 Dokumentation. Die Dokumentation der aktuellsten Moodle-Version finden Sie hier: OAuth2 Google Service.

OAuth2 Google Service

Aus MoodleDocs
Wechseln zu:Navigation, Suche

Baustelle.png Diese Seite ist noch nicht vollständig übersetzt.


Neue Funktionalität
in Moodle 3.3!

Einen OAuth2 Client in Google aufsetzen

Um einen OAuth2 Client in Google aufzusetzen, müssen Sie sich als erstes in der Google Developers Console anmelden und ein neues Projekt anlegen.

  • Verwenden Sie dazu das Menü oben auf der Seite.

google-1-create-new.png

  • Geben Sie dem Projekt einen beliebigen Namen. Der Name wird bei der Anmeldung nirgends angezeigt.

google-2-create-new-modal.png

  • Im Menü auf der linken Seite wählen Sie die Option Credentials" aus.

google-3-credentials.png

Setup the consent screen for your application. This is where you provide the public information that is shown to users when they are asked to authorise your application. Setting a product name is the minimum information that is required, but the more information you provide here - the more confidence users will have when granting this authorisation.

Setup consent screen

Now you can create some client credentials. Switch to the credentials tab and create a new OAuth client ID.

Create an OAuth Client ID

Setup the credentials for a Web Application. The most important setting here is to set the callback URL. This must be set to "your moodle site url + /admin/oauth2callback.php". If your moodle site was accessible at https://lemon.edu/ then this callback URL should be set to https://lemon.edu/admin/oauth2callback.php.

Set the callback URL

When you have saved the information on this page, Google will give you the client ID and client secret that you need to enter into Moodle.

Got my secrets!

Finally we have to enable the Drive API (if we want to use the google drive repository or file converter plugins).

View the Library tab
Select Drive API
Enable the API

Siehe auch