We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f974709 commit 317da35Copy full SHA for 317da35
src/content/docs/features/http-client.mdx
@@ -71,15 +71,16 @@ The http plugin is available in both as an JavaScript API and in Rust as a [reqw
71
```json
72
//src-tauri/capabilities/base.json
73
{
74
- "permissions": [
75
- {
76
- "identifier": "http:default",
77
- "allow": [{ "url": "https://*.tauri.app" }],
78
- "deny": [{ "url": "https://private.tauri.app" }]
79
- }
80
- ]
+ "permissions": [
+ {
+ "identifier": "http:default",
+ "allow": [{ "url": "https://*.tauri.app" }],
+ "deny": [{ "url": "https://private.tauri.app" }]
+ }
+ ]
81
}
82
```
83
+
84
For more information, please see the documentation for [Access Control Lists](/references/v2/acl/)
85
86
2. Send a request
0 commit comments