Title: OpenID Connect Server
Author: Automattic
Published: <strong>ऑक्टोबर 31, 2022</strong>
Last modified: एप्रिल 17, 2025

---

प्लगइन शोधा

![](https://s.w.org/plugins/geopattern-icon/openid-connect-server.svg)

# OpenID Connect Server

 [Automattic](https://profiles.wordpress.org/automattic/) कडून

[डाउनलोड करा](https://downloads.wordpress.org/plugin/openid-connect-server.2.0.0.zip)

 * [तपशील](https://mr.wordpress.org/plugins/openid-connect-server/#description)
 * [पुनरावलोकने](https://mr.wordpress.org/plugins/openid-connect-server/#reviews)
 * [डेव्हलोपमेंट](https://mr.wordpress.org/plugins/openid-connect-server/#developers)

 [समर्थन](https://wordpress.org/support/plugin/openid-connect-server/)

## वर्णन

With this plugin you can use your own WordPress install to authenticate with a webservice
that provides [OpenID Connect](https://openid.net/connect/) to implement Single-
Sign On (SSO) for your users.

The plugin is currently only configured using constants and hooks as follows:

### Define the RSA keys

If you don’t have keys that you want to use yet, generate them using these commands:

    ```
    openssl genrsa -out oidc.key 4096
    openssl rsa -in oidc.key -pubout -out public.key
    ```

And make them available to the plugin as follows (this needs to be added before 
WordPress loads):

    ```
    define( 'OIDC_PUBLIC_KEY', <<<OIDC_PUBLIC_KEY
    -----BEGIN PUBLIC KEY-----
    ...
    -----END PUBLIC KEY-----
    OIDC_PUBLIC_KEY
    );

    define( 'OIDC_PRIVATE_KEY', <<<OIDC_PRIVATE_KEY
    -----BEGIN PRIVATE KEY-----
    ...
    -----END PRIVATE KEY-----
    OIDC_PRIVATE_KEY
    );
    ```

Alternatively, you can also put them outside the webroot and load them from the 
files like this:

    ```
    define( 'OIDC_PUBLIC_KEY', file_get_contents( '/web-inaccessible/oidc.key' ) );
    define( 'OIDC_PRIVATE_KEY', file_get_contents( '/web-inaccessible/private.key' ) );
    ```

### Define the clients

Define your clients by adding a filter to `oidc_registered_clients` in a separate
plugin file or `functions.php` of your theme or in a MU-plugin like:

    ```
    add_filter( 'oidc_registered_clients', 'my_oidc_clients' );
    function my_oidc_clients() {
        return array(
            'client_id_random_string' => array(
                'name' => 'The name of the Client',
                'secret' => 'a secret string',
                'redirect_uri' => 'https://example.com/redirect.uri',
                'grant_types' => array( 'authorization_code' ),
                'scope' => 'openid profile',
            ),
        );
    }
    ```

### Exclude URL from caching

 * `example.com/wp-json/openid-connect/userinfo`: We implement caching exclusion
   measures for this endpoint by setting `Cache-Control: 'no-cache'` headers and
   defining the `DONOTCACHEPAGE` constant. If you have a unique caching configuration,
   please ensure that you manually exclude this URL from caching.

### Github Repo

You can report any issues you encounter directly on [Github repo: Automattic/wp-openid-connect-server](https://github.com/Automattic/wp-openid-connect-server)

## समीक्षा

ह्या प्लगइनसाठी कोणतेही समीक्षण नाही.

## योगदानकर्ते आणि विकसक

“OpenID Connect Server” हे मुक्त स्रोत सॉफ्टवेअर आहे. पुढील लोक या प्लगइनच्या निर्मितीत
योगदान केले आहे.

योगदानकर्ते

 *   [ Automattic ](https://profiles.wordpress.org/automattic/)
 *   [ WordPress.org ](https://profiles.wordpress.org/wordpressdotorg/)
 *   [ Alex Kirk ](https://profiles.wordpress.org/akirk/)
 *   [ Ashish Kumar (Ashfame) ](https://profiles.wordpress.org/ashfame/)
 *   [ Paulo Pinto ](https://profiles.wordpress.org/psrpinto/)

“OpenID Connect Server” 4 लोकॅलसमध्ये भाषांतरित केले आहे. [अनुवादकांना](https://translate.wordpress.org/projects/wp-plugins/openid-connect-server/contributors)
त्यांच्या योगदानाबद्दल धन्यवाद.

[भाषांतर करा “OpenID Connect Server” तुमच्या भाषेत.](https://translate.wordpress.org/projects/wp-plugins/openid-connect-server)

### विकासातील आग्रह?

[कोड ब्राउझ करा](https://plugins.trac.wordpress.org/browser/openid-connect-server/),
[SVN संग्रहालय](https://plugins.svn.wordpress.org/openid-connect-server/) तपासा,
किंवा [विकास लॉग](https://plugins.trac.wordpress.org/log/openid-connect-server/)
च्या [RSS](https://plugins.trac.wordpress.org/log/openid-connect-server/?limit=100&mode=stop_on_copy&format=rss)
द्वारे सदस्यता घ्या.

## बदलांची यादी

### 2.0.0

 * [Breaking] Add a configuration option to support clients that don’t require consent
   [#118](https://github.com/Automattic/wp-openid-connect-server/pull/118) props@
   lart2150
 * Make client_id and client_secret optional for the token endpoint [#116](https://github.com/Automattic/wp-openid-connect-server/pull/116)
   props @lart2150
 * Update expected args specs for token endpoint as per OIDC spec [#117](https://github.com/Automattic/wp-openid-connect-server/pull/117)

### 1.3.4

 * Add the autoloader to the uninstall script [#111](https://github.com/Automattic/wp-openid-connect-server/pull/111)
   props @MariaMozgunova

### 1.3.3

 * Fix failing login when Authorize form is non-English [[#108](https://github.com/Automattic/wp-openid-connect-server/pull/108)]
 * Improvements in site health tests for key detection [[#104](https://github.com/Automattic/wp-openid-connect-server/pull/104)][
   [#105](https://github.com/Automattic/wp-openid-connect-server/pull/105)]

### 1.3.2

 * Prevent userinfo endpoint from being cached [[#99](https://github.com/Automattic/wp-openid-connect-server/pull/99)]

### 1.3.0

 * Return `display_name` as the `name` property [[#87](https://github.com/Automattic/wp-openid-connect-server/pull/87)]
 * Change text domain to `openid-connect-server`, instead of `wp-openid-connect-
   server` [[#88](https://github.com/Automattic/wp-openid-connect-server/pull/88)]

### 1.2.1

 * No user facing changes

### 1.2.0

 * Add `oidc_user_claims` filter [[#82](https://github.com/Automattic/wp-openid-connect-server/pull/82)]

## मेटा

 *  आवृत्ती **2.0.0**
 *  शेवटचा अद्यतन **1 वर्ष पूर्वी**
 *  सक्रिय स्थापना **100+**
 *  वर्डप्रेस आवृत्ती ** 6.0 किंवा मोठा **
 *  परीक्षित केले आहे **6.8.5**
 *  PHP आवृत्ती ** 7.4 किंवा मोठा **
 *  भाषा
 * [Chinese (Taiwan)](https://tw.wordpress.org/plugins/openid-connect-server/), 
   [English (US)](https://wordpress.org/plugins/openid-connect-server/), [German](https://de.wordpress.org/plugins/openid-connect-server/),
   [Spanish (Chile)](https://cl.wordpress.org/plugins/openid-connect-server/), आणि
   [Spanish (Spain)](https://es.wordpress.org/plugins/openid-connect-server/).
 *  [तुमच्या भाषेत भाषांतर करा](https://translate.wordpress.org/projects/wp-plugins/openid-connect-server)
 * टॅग्ज:
 * [oauth](https://mr.wordpress.org/plugins/tags/oauth/)[oauth server](https://mr.wordpress.org/plugins/tags/oauth-server/)
   [oidc](https://mr.wordpress.org/plugins/tags/oidc/)[OpenID](https://mr.wordpress.org/plugins/tags/openid/)
   [openid connect](https://mr.wordpress.org/plugins/tags/openid-connect/)
 *  [प्रगत दृश्य](https://mr.wordpress.org/plugins/openid-connect-server/advanced/)

## मूल्यांकन

अजून कोणतीही पुनरावलोकने सबमिट केलेली नाहीत.

[Your review](https://wordpress.org/support/plugin/openid-connect-server/reviews/#new-post)

[सर्व पुनरावलोकने पहा](https://wordpress.org/support/plugin/openid-connect-server/reviews/)

## योगदानकर्ते

 *   [ Automattic ](https://profiles.wordpress.org/automattic/)
 *   [ WordPress.org ](https://profiles.wordpress.org/wordpressdotorg/)
 *   [ Alex Kirk ](https://profiles.wordpress.org/akirk/)
 *   [ Ashish Kumar (Ashfame) ](https://profiles.wordpress.org/ashfame/)
 *   [ Paulo Pinto ](https://profiles.wordpress.org/psrpinto/)

## समर्थन

काहीतरी सांगायचं आहे का? मदतीची आवश्यकता आहे का?

 [समर्थन फोरम पहा](https://wordpress.org/support/plugin/openid-connect-server/)