OpenAPI docs
¶
用於處理 OpenAPI 自動 UI 文件的工具程式,包含 Swagger UI(預設路徑為 /docs
)和 ReDoc(預設路徑為 /redoc
)。
fastapi.openapi.docs.get_swagger_ui_html ¶
get_swagger_ui_html(
*,
openapi_url,
title,
swagger_js_url="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui-bundle.js",
swagger_css_url="https://cdn.jsdelivr.net/npm/swagger-ui-dist@5/swagger-ui.css",
swagger_favicon_url="https://fastapi.dev.org.tw/img/favicon.png",
oauth2_redirect_url=None,
init_oauth=None,
swagger_ui_parameters=None
)
產生並返回載入 Swagger UI 以顯示互動式 API 文件的 HTML(通常提供於 /docs
路徑)。
只有在需要覆蓋某些部分時,例如用於載入 Swagger UI 的 JavaScript 和 CSS 的網址,才需要自行呼叫此函式。
請在FastAPI 文件的設定 Swagger UI和FastAPI 文件的客製化文件 UI 靜態資源(自行託管)中閱讀更多相關資訊。
參數 | 說明 |
---|---|
openapi_url
|
Swagger UI 應該載入和使用的 OpenAPI 網址。 FastAPI 通常會使用預設網址
類型: |
title
|
HTML
類型: |
swagger_js_url
|
用於載入 Swagger UI JavaScript 的網址。 通常設定為 CDN 網址。
類型: |
swagger_css_url
|
用於載入 Swagger UI CSS 的網址。 通常設定為 CDN 網址。
類型: |
swagger_favicon_url
|
要使用的網站圖示網址。通常顯示在瀏覽器標籤頁中。
類型: |
oauth2_redirect_url
|
OAuth2 重定向網址,通常由 FastAPI 自動處理。
類型: |
init_oauth
|
包含 Swagger UI OAuth2 初始化設定的字典。
類型: |
swagger_ui_parameters
|
Swagger UI 的設定參數。
類型: |
原始碼位於 fastapi/openapi/docs.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
|
fastapi.openapi.docs.get_redoc_html ¶
get_redoc_html(
*,
openapi_url,
title,
redoc_js_url="https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js",
redoc_favicon_url="https://fastapi.dev.org.tw/img/favicon.png",
with_google_fonts=True
)
產生並返回載入 ReDoc 以顯示替代 API 文件的 HTML 回應(通常提供於 /redoc
路徑)。
只有在需要覆蓋某些部分時,例如用於載入 ReDoc 的 JavaScript 和 CSS 的網址,才需要自行呼叫此函式。
請在FastAPI 文件的客製化文件 UI 靜態資源(自行託管)中閱讀更多相關資訊。
參數 | 說明 |
---|---|
openapi_url
|
ReDoc 應該載入和使用的 OpenAPI 網址。 FastAPI 通常會使用預設網址
類型: |
title
|
HTML
類型: |
redoc_js_url
|
用於載入 ReDoc JavaScript 的網址。 通常設定為 CDN 網址。
類型: |
redoc_favicon_url
|
要使用的網站圖示網址。通常顯示在瀏覽器標籤頁中。
類型: |
with_google_fonts
|
載入並使用 Google 字型。
類型: |
原始碼位於 fastapi/openapi/docs.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 |
|
fastapi.openapi.docs.get_swagger_ui_oauth2_redirect_html ¶
get_swagger_ui_oauth2_redirect_html()
產生包含 Swagger UI OAuth2 重定向的 HTML 回應。
通常不需要使用或更改此項。
原始碼位於 fastapi/openapi/docs.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
|
fastapi.openapi.docs.swagger_ui_default_parameters 模組屬性
¶
swagger_ui_default_parameters = {
"dom_id": "#swagger-ui",
"layout": "BaseLayout",
"deepLinking": True,
"showExtensions": True,
"showCommonExtensions": True,
}
Swagger UI 的預設配置。
您可以將其用作範本,以新增任何其他所需的配置。