You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are posting against XML APIs it might be easier for you to get the XML directly from an XML file instead of posting its content into the _Form URL Encoded_ fields.
4
+
5
+
To enable file system access with bruno, you have to enable a setting within the collections `bruno.json` file:
6
+
7
+
```json
8
+
{
9
+
"version": "1",
10
+
"name": "my-collection",
11
+
"type": "collection",
12
+
"scripts": {
13
+
"filesystemAccess": {
14
+
"allow": true
15
+
}
16
+
}
17
+
}
18
+
```
19
+
20
+
Besides that, just use a similar script like this one to pull data from your XML file that resides right next to your _.bru_ file:
0 commit comments