Skip to content

Commit

Permalink
update docs folder links
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhell committed Aug 12, 2023
1 parent e60b486 commit 0b53192
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/guide-ja/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Yii 2 認証クライアント・エクステンション
========================================

このエクステンションは [OpenID](http://openid.net/)[OAuth](http://oauth.net/) および [OAuth2](http://oauth.net/2/) のコンシューマを
このエクステンションは [OpenID](https://openid.net/)[OAuth](https://oauth.net/) および [OAuth2](https://oauth.net/2/) のコンシューマを
Yii フレームワーク 2.0 に追加します。


Expand Down
2 changes: 1 addition & 1 deletion docs/guide-ja/oauth-direct-authentication.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ OAuth プロバイダのウェブ・サイトを訪問する必要のない、
## リソース・オーナー・パスワード・クレデンシャル・グラント

[リソース・オーナー・パスワード・クレデンシャル・グラント](https://tools.ietf.org/html/rfc6749#section-4.3) のワークフローは、OAuth プロバイダのウェブ・サイトにリダイレクトすることなく、ユーザ名/パスワードのペアによる直接のユーザ認証を可能にするものです。
([4.3. リソース・オーナー・パスワード・クレデンシャル・グラント](http://openid-foundation-japan.github.io/rfc6749.ja.html#grant-password) を参照)
([4.3. リソース・オーナー・パスワード・クレデンシャル・グラント](https://openid-foundation-japan.github.io/rfc6749.ja.html#grant-password) を参照)

[[\yii\authclient\OAuth2::authenticateUser()]] を使うと、このワークフローによってユーザを認証することが出来ます。
例えば、
Expand Down
4 changes: 2 additions & 2 deletions docs/guide-ja/open-id-connect.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ OpenID 接続
===========

このエクステンションは、[[\yii\authclient\OpenIdConnect]] クラスを通じて、
[OpenId 接続](http://openid.net/connect/) 認証プロトコルのサポートを提供します。
[OpenId 接続](https://openid.net/connect/) 認証プロトコルのサポートを提供します。

アプリケーション設定の例:

Expand All @@ -27,7 +27,7 @@ OpenID 接続

認証のワークフローは、OAuth2 の場合と全く同じです。

**注意!** 'OpenID 接続' プロトコルは、認証のプロセスをセキュアにするために、 [JWS](http://tools.ietf.org/html/draft-ietf-jose-json-web-signature) 検証を使います。
**注意!** 'OpenID 接続' プロトコルは、認証のプロセスをセキュアにするために、 [JWS](https://tools.ietf.org/html/draft-ietf-jose-json-web-signature) 検証を使います。
そのような検証を使うためには。このエクステンションがデフォルトでは要求していない
`web-token/jwt-checker`, `web-token/jwt-key-mgmt`, `web-token/jwt-signature`, `web-token/jwt-signature-algorithm-hmac`, `web-token/jwt-signature-algorithm-ecdsa`, `web-token/jwt-signature-algorithm-rsa` ライブラリをインストールする必要があります。

Expand Down
4 changes: 2 additions & 2 deletions docs/guide-ru/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Расширение AuthClient для Yii 2
===============================

Данное расширение добавляет [OpenID](http://openid.net/), [OAuth](http://oauth.net/) и [OAuth2](http://oauth.net/2/)
Данное расширение добавляет [OpenID](https://openid.net/), [OAuth](https://oauth.net/) и [OAuth2](https://oauth.net/2/)
требующиеся для Yii framework 2.0.


Expand All @@ -18,4 +18,4 @@
* [Получение дополнительных данных с помощью дополнительных обращений к API](usage-api.md)
* [Создание собственных клиентов аутентификации](creating-your-own-auth-clients.md)
* [Непосредственная аутентификация по OAuth 2.0](oauth-direct-authentication.md)
* [Настройка HTTP клиента](setup-http-client.md)
* [Настройка HTTP клиента](setup-http-client.md)
4 changes: 2 additions & 2 deletions docs/guide-zh-CN/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
用于 Yii 2 的 AuthClient 扩展
=============================

该扩展为 Yii framework 2.0 添加 [OpenID](http://openid.net/)[OAuth](http://oauth.net/)[OAuth2](http://oauth.net/2/) 客户端。
该扩展为 Yii framework 2.0 添加 [OpenID](https://openid.net/)[OAuth](https://oauth.net/)[OAuth2](https://oauth.net/2/) 客户端。


起步
Expand All @@ -13,4 +13,4 @@
额外主题
--------

* [创建你自己的验证客户端](creating-your-own-auth-clients.md)
* [创建你自己的验证客户端](creating-your-own-auth-clients.md)
4 changes: 2 additions & 2 deletions docs/guide/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
AuthClient Extension for Yii 2
==============================

This extension adds [OpenID](http://openid.net/), [OAuth](http://oauth.net/) and [OAuth2](http://oauth.net/2/) consumers
This extension adds [OpenID](https://openid.net/), [OAuth](https://oauth.net/) and [OAuth2](https://oauth.net/2/) consumers
for the Yii framework 2.0.


Expand All @@ -19,4 +19,4 @@ Additional topics
* [Creating your own auth clients](creating-your-own-auth-clients.md)
* [OAuth 2.0 direct authentication](oauth-direct-authentication.md)
* [OpenID Connect](open-id-connect.md)
* [Setup HTTP Client](setup-http-client.md)
* [Setup HTTP Client](setup-http-client.md)
4 changes: 2 additions & 2 deletions docs/guide/open-id-connect.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
OpenID Connect
==============

This extension provides support for [OpenId Connect](http://openid.net/connect/) authentication protocol via
This extension provides support for [OpenId Connect](https://openid.net/connect/) authentication protocol via
[[\yii\authclient\OpenIdConnect]] class.

Application configuration example:
Expand All @@ -27,7 +27,7 @@ Application configuration example:

Authentication workflow is exactly the same as for OAuth2.

**Heads up!** 'OpenID Connect' protocol uses [JWS](http://tools.ietf.org/html/draft-ietf-jose-json-web-signature) verification
**Heads up!** 'OpenID Connect' protocol uses [JWS](https://tools.ietf.org/html/draft-ietf-jose-json-web-signature) verification
for the authentication process securing. You will need to install `web-token/jwt-checker`, `web-token/jwt-key-mgmt`, `web-token/jwt-signature`, `web-token/jwt-signature-algorithm-hmac`, `web-token/jwt-signature-algorithm-ecdsa` and `web-token/jwt-signature-algorithm-rsa` libraries in order to use such verification. These libraries are not required by this extension by default. It can be done via composer:

```
Expand Down

0 comments on commit 0b53192

Please sign in to comment.