aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralexv-smirnov <alexv-smirnov@yandex-team.ru>2022-05-12 16:07:38 +0300
committeralexv-smirnov <alexv-smirnov@yandex-team.ru>2022-05-12 16:07:38 +0300
commitf7b9a8f2cd9f2e22758e6ab093cb792081e6c94d (patch)
tree93a88e3ad6bd183b1c2dac115bc29a4a0b6972de
parent5d6227e02afd1b056ca4f5742edb23dbed253330 (diff)
downloadydb-f7b9a8f2cd9f2e22758e6ab093cb792081e6c94d.tar.gz
ydb docs github PR 28, 52, 53
ref:515fed111f6cbe6cbf37cdb07da2a6a3831f738b
-rw-r--r--ydb/docs/en/core/reference/ydb-sdk/_includes/install.md4
-rw-r--r--ydb/docs/en/core/reference/ydb-sdk/_includes/install/cmd_nodejs.md3
-rw-r--r--ydb/docs/en/core/reference/ydb-sdk/example/go/index.md4
-rw-r--r--ydb/docs/ru/core/reference/ydb-sdk/_includes/auth.md2
-rw-r--r--ydb/docs/ru/core/reference/ydb-sdk/_includes/install.md4
-rw-r--r--ydb/docs/ru/core/reference/ydb-sdk/_includes/install/cmd_nodejs.md3
6 files changed, 17 insertions, 3 deletions
diff --git a/ydb/docs/en/core/reference/ydb-sdk/_includes/install.md b/ydb/docs/en/core/reference/ydb-sdk/_includes/install.md
index ec44d5c9b9..2af48362e8 100644
--- a/ydb/docs/en/core/reference/ydb-sdk/_includes/install.md
+++ b/ydb/docs/en/core/reference/ydb-sdk/_includes/install.md
@@ -34,5 +34,9 @@ The build process using the source code is described in the source code reposito
{% include [install/cmd_php.md](install/cmd_php.md) %}
+- Node.JS
+
+ {% include [install/cmd_nodejs.md](install/cmd_nodejs.md) %}
+
{% endlist %}
diff --git a/ydb/docs/en/core/reference/ydb-sdk/_includes/install/cmd_nodejs.md b/ydb/docs/en/core/reference/ydb-sdk/_includes/install/cmd_nodejs.md
new file mode 100644
index 0000000000..af82765dd5
--- /dev/null
+++ b/ydb/docs/en/core/reference/ydb-sdk/_includes/install/cmd_nodejs.md
@@ -0,0 +1,3 @@
+``` bash
+npm install ydb-sdk
+```
diff --git a/ydb/docs/en/core/reference/ydb-sdk/example/go/index.md b/ydb/docs/en/core/reference/ydb-sdk/example/go/index.md
index e0bb77afda..32feac272d 100644
--- a/ydb/docs/en/core/reference/ydb-sdk/example/go/index.md
+++ b/ydb/docs/en/core/reference/ydb-sdk/example/go/index.md
@@ -51,8 +51,8 @@ db, err := ydb.Open(
dsn,
// yc.WithInternalCA(), // using Yandex.Cloud certificates
ydb.WithAccessTokenCredentials(token), // token-based authentication
-// ydb.WithAnonimousCredentials(token), // anonymous authentication (for example, in docker ydb)
-// yc.WithMetadataCredentials(token), // authentication from inside a VM in Yandex.Cloud or a function in Yandex Functions
+// ydb.WithAnonymousCredentials(), // anonymous authentication (for example, in docker ydb)
+// yc.WithMetadataCredentials(ctx), // authentication from inside a VM in Yandex.Cloud or a function in Yandex Functions
// yc.WithServiceAccountKeyFileCredentials("~/.ydb/sa.json"), // authentication in Yandex.Cloud using a service account file
// environ.WithEnvironCredentials(ctx), // authentication using environment variables
)
diff --git a/ydb/docs/ru/core/reference/ydb-sdk/_includes/auth.md b/ydb/docs/ru/core/reference/ydb-sdk/_includes/auth.md
index faa16d3675..e15b395508 100644
--- a/ydb/docs/ru/core/reference/ydb-sdk/_includes/auth.md
+++ b/ydb/docs/ru/core/reference/ydb-sdk/_includes/auth.md
@@ -1,6 +1,6 @@
# Аутентификация в SDK
-Как описано в статье о [подключении к серверу {{ ydb-short-name }}](../../../concepts/connect.md), клиент с каждым в запросом должен отправить [аутентификационный токен](../../../concepts/connect.md#auth). Аутентификационный токен проверяется сервером и в случае успешной аутентификации запрос авторизуется и выполняется, иначе возвращается ошибка `Unauthenticated`.
+Как описано в статье о [подключении к серверу {{ ydb-short-name }}](../../../concepts/connect.md), клиент с каждым запросом должен отправить [аутентификационный токен](../../../concepts/connect.md#auth). Аутентификационный токен проверяется сервером и в случае успешной аутентификации запрос авторизуется и выполняется, иначе возвращается ошибка `Unauthenticated`.
{{ ydb-short-name }} SDK использует объект, отвечающий за генерацию таких токенов. SDK предоставляет встроенные cпособы получения такого объекта:
diff --git a/ydb/docs/ru/core/reference/ydb-sdk/_includes/install.md b/ydb/docs/ru/core/reference/ydb-sdk/_includes/install.md
index e6f06009a3..4c66ff447d 100644
--- a/ydb/docs/ru/core/reference/ydb-sdk/_includes/install.md
+++ b/ydb/docs/ru/core/reference/ydb-sdk/_includes/install.md
@@ -34,4 +34,8 @@
{% include [install/cmd_php.md](install/cmd_php.md) %}
+- Node.JS
+
+ {% include [install/cmd_nodejs.md](install/cmd_nodejs.md) %}
+
{% endlist %} \ No newline at end of file
diff --git a/ydb/docs/ru/core/reference/ydb-sdk/_includes/install/cmd_nodejs.md b/ydb/docs/ru/core/reference/ydb-sdk/_includes/install/cmd_nodejs.md
new file mode 100644
index 0000000000..af82765dd5
--- /dev/null
+++ b/ydb/docs/ru/core/reference/ydb-sdk/_includes/install/cmd_nodejs.md
@@ -0,0 +1,3 @@
+``` bash
+npm install ydb-sdk
+```