Skip to main content

Allows to use Odoo as an OAuth2 provider

Project description

License: AGPL-3

OAuth Provider

This module allows you to turn Odoo into an OAuth 2 provider.

It’s meant to provide the basic authentication feature, and some data access routes. But you are encouraged to create custom routes, in other modules, to give structured data for any specific need.

Installation

To install this module, you need to:

  1. Install the oauthlib python module

  2. Install the module like any other in Odoo

  3. For the token retrieval to work on a multi-database instance, you should add this module in the server_wide_modules list

Configuration

This module requires you to configure two things :

  1. The scopes are used to define restricted data access

  2. The clients are used to declare applications that will be allowed to request tokens and data

To configure scopes, you need to:

  1. Go to Settings > Users > OAuth Provider Scopes

  2. Create some scopes:

  • The scope name and description will be displayed to the user on the authorization page.

  • The code is the value provided by the OAuth clients to request access to the scope.

  • The model defines which model the scope is linked to (access to user data, partners, sales orders, etc.).

  • The filter allows you to determine which records will be accessible through this scope. No filter means all records of the model are accessible.

  • The field names allows you to define which fields will be provided to the clients. An empty list only returns the id of accessible records.

To configure clients, you need to:

  1. Go to Settings > Users > OAuth Provider Clients

  2. Create at least one client:

  • The name will be displayed to the user on the authorization page.

  • The client identifier is the value provided by the OAuth clients to request authorizations/tokens.

  • The application type adapts the process to four pre-defined profiles:

    • Web Application : Authorization Code Grant

    • Mobile Application : Implicit Grant

    • Legacy Application : Resource Owner Password Credentials Grant

    • Backend Application : User Credentials Grant (not implemented yet)

  • The skip authorization checkbox allows the client to skip the authorization page, and directly deliver a token without prompting the user (useful when the application is trusted).

  • The allowed scopes list defines which data will be accessible by this client applicaton.

  • The allowed redirect URIs must match the URI sent by the client, to avoid redirecting users to an unauthorized service. The first value in the list is the default redirect URI.

For example, to configure an Odoo’s auth_oauth module compatible client, you will enter these values :

  • Name : Anything you want

  • Client identifier : The identifier you want to give to this client

  • Application Type : Mobile Application (Odoo uses the implicit grant mode, which corresponds to the mobile application profile)

  • Allowed Scopes : Nothing required, but allowing access to current user’s email and name is used by Odoo to fill user’s information on signup

  • Allowed Redirect URIs : http://odoo.example.com/auth_oauth/signin

Usage

This module will allow OAuth clients to use your Odoo instance as an OAuth provider.

Once configured, you must give these information to your client application :

  1. Client identifier : Identifies the application (to be able to check allowed scopes and redirect URIs)

  2. Allowed scopes : The codes of scopes allowed for this client

  3. URLs for the requests :

For example, to configure the auth_oauth Odoo module as a client, you will enter these values :

Try me on Runbot

Known issues / Roadmap

  • Implement the backend application profile (client credentials grant type)

  • Add checkboxes on the authorization page to allow the user to disable some scopes for a token ? (I don’t know if this is allowed in the OAuth protocol)

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback.

Credits

Images

  • Odoo Community Association: Icon.

Contributors

Maintainer

Odoo Community Association

This module is maintained by the OCA.

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

To contribute to this module, please visit https://odoo-community.org.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page