Server IP : 184.154.167.98 / Your IP : 3.147.8.46 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/nextcloud/core/doc/admin/_sources/configuration_server/ |
Upload File : |
====== OAuth2 ====== Nextcloud allows connecting external services (for example Moodle) to your Nextcloud. This is done via ``OAuth2``. See `RFC6749 <https://tools.ietf.org/html/rfc6749>`_ for the OAuth2 specification. .. note:: Nextcloud does only support confidential clients. Add an OAuth2 Application ------------------------- Head over to your Administrator Security Settings. Here you can add a new ``OAuth2`` client. .. figure:: images/oauth2-settings.png Enter the name of your application and provide a redirection url. You should now have a Client Identifier and Secret. Enter those into your ``OAuth2`` client. Please provide the OAuth2 application the following details: * Authorization endpoint: ``https://cloud.example.org/apps/oauth2/authorize`` * Token endpoint: ``https://cloud.example.org/apps/oauth2/api/v1/token`` Note that you must include ``index.php`` if pretty URL is not configured - i.e. ``https://cloud.example.org/index.php/apps/oauth2/api/v1/token``. The access token ---------------- The access token obtained is a so called Bearer token. Which means that for request to the Nextcloud server you will have to send the proper authorization header. Authorization: Bearer <TOKEN> Note that apache by default strips this. Make sure you have ``mod_headers``, ``mod_rewrite`` and ``mod_env`` enabled.