Tauri HttpAllowlistConfig
HTTP API 的允许列表。
类型:object
名字 | 类型 | 违约 | 描述 |
---|---|---|---|
HttpAllowlistScope | [] | HTTP API 的访问范围。 | |
boolean | false | 使用此标志可启用所有 HTTP API 功能。 | |
boolean | false | 允许发出 HTTP 请求。 |
HttpAllowlistScope
HTTP API 范围定义。它是使用 HTTP API 时 Web 视图可以访问的 URL 列表。作用域内的 URL 使用 glob 模式与请求 URL 进行匹配。
例子:
- “https://**”:允许所有 HTTPS URL
- “https://*.github.com/tauri-apps/tauri”:允许“github.com”的任何子域具有“tauri-apps/api”路径
- "https://myapi.service.com/users/*“:允许访问任何以”https://myapi.service.com/users/“开头的 URL
类型:uri
string _(format: )_[]