Skip to content

Commit a20d61b

Browse files
committed
fix: images
1 parent ccf9745 commit a20d61b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/en-US/handbook/auth-oidc/example/microsoft.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ Copy the callback URL.
1515

1616
Open the Microsoft Entra administration Center and register a new application.
1717

18-
! [](https://static-docs.nocobase.com/202412021506837.png)
18+
![](https://static-docs.nocobase.com/202412021506837.png)
1919

2020
Fill in the callback URL you just copied here.
2121

22-
! [](https://static-docs.nocobase.com/202412021520696.png)
22+
![](https://static-docs.nocobase.com/202412021520696.png)
2323

2424
## Obtain and fill in the appropriate information
2525

2626
Click on the Application you just registered and copy the **Application (client) ID** and **Directory (tenant) ID** on the home page.
2727

28-
! [](https://static-docs.nocobase.com/202412021522063.png)
28+
![](https://static-docs.nocobase.com/202412021522063.png)
2929

3030
Click Certificates & secrets to create a new Client secret and copy the **Value**.
3131

32-
! [](https://static-docs.nocobase.com/202412021522846.png)
32+
![](https://static-docs.nocobase.com/202412021522846.png)
3333

3434
The mapping between the preceding information and the NocoBase authenticator configuration is as follows:
3535

docs/en-US/handbook/workflow-webhook/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ Parsing an HTTP request is divided into three parts:
4646

4747
Request parameter is the URL of query parameters, such as `http://localhost:13000/api/webhook:trigger/1hfmkioou0d? query=1` 'query' parameter. Paste the complete URL sample or query only the parameter part of the sample and click the parse button to automatically parse the key-value pairs.
4848

49-
! [20241210111155](https://static-docs.nocobase.com/20241210111155.png)
49+
![20241210111155](https://static-docs.nocobase.com/20241210111155.png)
5050

5151
Automatic parsing converts the parameter portion of the URL into a JSON structure, and generates a path based on the parameter hierarchy such as `query[0]`, `query[0].a`, etc. The path name can be manually modified if it does not meet the requirements, but usually does not need to be modified. Aliases are optional for displaying the name of a variable when used as a variable. At the same time, all parameter tables in the sample are generated. If there are unnecessary parameters, you can delete them.
5252

5353
3. Request Body
5454

5555
The request Body is the body of the HTTP request. Currently, only the request body in Content-Type format application/json is supported. You can directly configure the path to be parsed, or enter a JSON example and click the parse button for automatic parsing.
5656

57-
! [20241210112529](https://static-docs.nocobase.com/20241210112529.png)
57+
![20241210112529](https://static-docs.nocobase.com/20241210112529.png)
5858

5959
Automatic parsing JSON structure will be the key/value pair into paths, such as `{" a ": 1," b ": {" c" : 2}}` generates `a`, `b`, `b.c` path, etc. Aliases are optional for displaying the name of a variable when used as a variable. At the same time, all parameter tables in the sample are generated. If there are unnecessary parameters, you can delete them.
6060

@@ -64,7 +64,7 @@ The response part of Webhook is configured differently in synchronous and asynch
6464

6565
Typically, the response to an asynchronously triggered Webhook event has a status code of `200` and a response body of `ok`. You can also customize the status code, response header, and response body of the response.
6666

67-
! [20241210114312](https://static-docs.nocobase.com/20241210114312.png)
67+
![20241210114312](https://static-docs.nocobase.com/20241210114312.png)
6868

6969
### Response node
7070

@@ -76,18 +76,18 @@ In addition, the execution of the response node terminates the execution of the
7676

7777
In the workflow configuration interface, click the plus sign ("+") button in the process to add the "Response" node:
7878

79-
! [20241210115120](https://static-docs.nocobase.com/20241210115120.png)
79+
![20241210115120](https://static-docs.nocobase.com/20241210115120.png)
8080

8181
#### Response configuration
8282

83-
! [20241210115500](https://static-docs.nocobase.com/20241210115500.png)
83+
![20241210115500](https://static-docs.nocobase.com/20241210115500.png)
8484

8585
Variables in the workflow context can be used in the response body.
8686

8787
#### Example
8888

8989
In the Webhook workflow in synchronous mode, different responses can be returned according to different business conditions, as shown in the figure below:
9090

91-
! [20241210120655](https://static-docs.nocobase.com/20241210120655.png)
91+
![20241210120655](https://static-docs.nocobase.com/20241210120655.png)
9292

9393
Check whether a service status is satisfied through the conditional branch node. If yes, a success message is displayed. Otherwise, a failure message is displayed.

0 commit comments

Comments
 (0)