Skip to content

Commit

Permalink
Change certs path (#191)
Browse files Browse the repository at this point in the history
* update

* update

* update

* update
  • Loading branch information
yujun4464 authored Dec 11, 2023
1 parent c94d4c7 commit f1d2ebf
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/tutorial/run_secretflow_with_api_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Kuscia API 使用双向 HTTPS,所以需要配置你的客户端库的双向 HT

| 文件名 | 文件功能 |
| -------------------- | ------------------------------------------------------- |
| kusciaapi-client.key | 客户端私钥文件 |
| kusciaapi-client.crt | 客户端证书文件 |
| kusciaapi-server.key | 服务端私钥文件 |
| kusciaapi-server.crt | 服务端证书文件 |
| ca.crt | CA 证书文件 |
| token | 认证 token ,在 headers 中添加 Token: { token 文件内容} |

Expand All @@ -31,8 +31,8 @@ Kuscia API 使用双向 HTTPS,所以需要配置你的客户端库的双向 HT

| 文件名 | 文件功能 |
| -------------------- | ------------------------------------------------------- |
| kusciaapi-client.key | 客户端私钥文件 |
| kusciaapi-client.crt | 客户端证书文件 |
| kusciaapi-server.key | 服务端私钥文件 |
| kusciaapi-server.crt | 服务端证书文件 |
| ca.crt | CA 证书文件 |
| token | 认证 token ,在 headers 中添加 Token: { token 文件内容} |

Expand Down Expand Up @@ -106,7 +106,7 @@ docker exec -it ${USER}-kuscia-autonomy-alice
在 kuscia-master 容器终端中,执行以下命令,内容如下:

```shell
curl -X POST 'https://localhost:8082/api/v1/job/create' \
curl -k -X POST 'https://localhost:8082/api/v1/job/create' \
--header "Token: $(cat /home/kuscia/var/tmp/token)" \
--header 'Content-Type: application/json' \
--cert '/home/kuscia/var/tmp/kusciaapi-server.crt' \
Expand Down Expand Up @@ -171,7 +171,7 @@ job-best-effort-linear 是你在[配置 Job](#configure-kuscia-job) 中指定的
请求参数`job_ids`是一个 Array[String] ,需要列出所有待查询的 KusciaJob 名称。

```shell
curl -X POST 'https://localhost:8082/api/v1/job/status/batchQuery' \
curl -k -X POST 'https://localhost:8082/api/v1/job/status/batchQuery' \
--header "Token: $(cat /home/kuscia/var/tmp/token)" \
--header 'Content-Type: application/json' \
--cert '/home/kuscia/var/tmp/kusciaapi-server.crt' \
Expand Down Expand Up @@ -261,7 +261,7 @@ curl -X POST 'https://localhost:8082/api/v1/job/status/batchQuery' \
KusciaJob.

```shell
curl -X POST 'https://localhost:8082/api/v1/job/delete' \
curl -k -X POST 'https://localhost:8082/api/v1/job/delete' \
--header "Token: $(cat /home/kuscia/var/tmp/token)" \
--header 'Content-Type: application/json' \
--cert '/home/kuscia/var/tmp/kusciaapi-server.crt' \
Expand All @@ -288,7 +288,7 @@ KusciaJob 的算子参数由 `taskInputConfig` 字段定义,对于不同的算

对于 secretflow ,请参考:[Secretflow 官网](https://www.secretflow.org.cn/)

{#http-client-error}
{#http-server-error}

## HTTP 客户端错误处理

Expand Down

0 comments on commit f1d2ebf

Please sign in to comment.