Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kurehajime authored Apr 16, 2023
1 parent 60bc94b commit 773db17
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
A stepping-stone server that provides APIs while hiding access tokens.

By accessing the API via fumidai, each server does not need to know the access token.
However, it is not recommended to expose this server to outside parties.

However, **it is not recommended to expose this server to outside parties.**

```mermaid
sequenceDiagram
participant App as ApplicationServer
participant fumidai as fumidai
participant Api as ApiServer
App->>fumidai: HTTP request without an access token
fumidai->>Api: HTTP request with an access token
Api->>fumidai: Response
fumidai->>App: Response
```

## Usage

Expand Down

0 comments on commit 773db17

Please sign in to comment.