Title: OpenID Connect Server
Author: Automattic
Published: <strong>2022년 10월 31일</strong>
Last modified: 2025년 4월 17일

---

플러그인 검색

![](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://ko.wordpress.org/plugins/openid-connect-server/#description)
 * [평가](https://ko.wordpress.org/plugins/openid-connect-server/#reviews)
 * [개발](https://ko.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**
 *  최근 업데이트: **12개월 전**
 *  활성화된 설치 **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://ko.wordpress.org/plugins/tags/oauth/)[oauth server](https://ko.wordpress.org/plugins/tags/oauth-server/)
   [oidc](https://ko.wordpress.org/plugins/tags/oidc/)[OpenID](https://ko.wordpress.org/plugins/tags/openid/)
   [openid connect](https://ko.wordpress.org/plugins/tags/openid-connect/)
 *  [고급 보기](https://ko.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/)