Skip to content

Commit 97ee89d

Browse files
committed
fix: index
1 parent ecf98d7 commit 97ee89d

File tree

8 files changed

+68
-22
lines changed

8 files changed

+68
-22
lines changed

docs/api/socket/index.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,7 @@ lb-\*.exptech.dev 為指定 Balance Server,若不加編號則由 DNS 自動分
2727
參考 [手動處理 Base URL](../more/base-url)
2828

2929
:::
30+
31+
## 驗證
32+
33+
## 訂閱

docs/api/start/hello.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
sidebar_position: 2
3+
---
4+
5+
# 開始
6+
7+
## 聲明
8+
9+
除特殊情況外,請不要將 ExpTech 提供之資料二次分發,包括但不限於架設伺服器轉發或直播等,原則上僅供個人使用,更多規定請參考[服務條款](./tos)
10+
11+
## 第三方服務
12+
13+
若要製作第三方服務,請務必讓使用者知道資料來源、原理及用途,並務必讓使用者直接串接 ExpTech API 或 Socket 進行資料取得,不要二次分發資料。

docs/api/start/index.mdx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,8 @@ sidebar_position: 1
1010

1111
ExpTech 探索科技是一個由不同專長的成員組成的團隊,致力於程式設計、介面設計、創意、實用等領域的創新與實踐。我們的主要著重於臺灣即時地震監測,利用地震數據和視覺化技術,提供地震預警和資料服務。
1212

13-
## 目錄
13+
## 聯絡資訊
1414

15-
- [開始](./install)
16-
- [服務條款](./tos)
17-
18-
## 連結
19-
20-
- [ExpTech Studio 官方網站](https://exptech.com.tw/)
21-
- [ExpTech Studio 網路地圖](https://status.exptech.com.tw/)
15+
16+
- Discord: [連結](https://exptech.com.tw/dc)
17+
- GitHub: [連結](https://github.com/ExpTechTW)

docs/api/start/install.mdx

Lines changed: 0 additions & 13 deletions
This file was deleted.

docs/api/start/link.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
sidebar_position: 6
3+
---
4+
5+
# 常用連結
6+
7+
- [ExpTech Studio 官方網站](https://exptech.com.tw/)
8+
- [ExpTech Studio 網路地圖](https://status.exptech.com.tw/)

docs/api/verify/limit.mdx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
sidebar_position: 4
3+
---
4+
5+
# 用量
6+
7+
為防止 API 被濫用,ExpTech API 有限制機制,具體可參考下方。
8+
9+
## 速度限制
10+
11+
- **75** RPS / IP
12+
- **150** RPS / User
13+
14+
## 用量限制
15+
16+
- **300** 萬次 / month
17+
- **4.5** GB / month
18+
19+
:::tip
20+
21+
不夠用?歡迎與我們聯絡,討論客製化方案的可能性。Email: `[email protected]`
22+
23+
:::

docs/api/verify/subscribe.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
sidebar_position: 3
3+
---
4+
5+
# 權限
6+
7+
ExpTech API 採用樹狀權限系統,具體可參考下方範例並從權限表獲取相關權限資訊。
8+
9+
- [權限表(JSON)](https://api.exptech.dev/api/v1/auth/permissions)
10+
11+
## 範例
12+
13+
- `http.trem.*` (隱式授予 `http.trem.rts``http.trem.eew` 權限)
14+
- `http.trem.rts` (細部授權)
15+
- `http.trem.eew` (細部授權)

src/components/SvgDisplay/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type SvgDisplayProps = {
1111
export default function SvgDisplay({
1212
svg,
1313
maxWidth = "100%",
14-
backgroundColor = "transparent",
14+
backgroundColor = "#1c1e21",
1515
darkMode = false
1616
}: SvgDisplayProps): JSX.Element {
1717
const containerRef = useRef<HTMLDivElement>(null);

0 commit comments

Comments
 (0)