Skip to content

Commit a9ad57a

Browse files
committed
draft
1 parent e4efa4c commit a9ad57a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

aspnetcore/test/http-files.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -259,11 +259,11 @@ Authorization: Bearer {{login.response.body.$.token}}
259259

260260
The syntax `{{login.response.body.$.token}}` represents the bearer token:
261261

262-
**`login`**: Is the request name.
263-
**`response`**: Refers to the HTTP response object.
264-
**`body`**: Refers to the body of the HTTP response.
265-
**`$`**: Represents the root element of the JSON document in the response body.
266-
**`token`**: Refers to the specific property within the JSON document.
262+
* **`login`**: Is the request name.
263+
* **`response`**: Refers to the HTTP response object.
264+
* **`body`**: Refers to the body of the HTTP response.
265+
* **`$`**: Represents the root element of the JSON document in the response body.
266+
* **`token`**: Refers to the specific property within the JSON document.
267267

268268
Without using request variables you would need to manually extract the token from the login response and include it in the header of subsequent requests. Request variables enable you to automate this process.
269269

0 commit comments

Comments
 (0)