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 a243245 commit fd79ca4Copy full SHA for fd79ca4
README.md
@@ -143,4 +143,11 @@ You can also use the `this_session` method to create a new `requests.Sesssion` o
143
>>> session = client.this_session()
144
>>> session.cookies.get_dict()
145
{...} # now includes session cookies
146
+```
147
+
148
+You can now make a request to a protected resource on the current node using this session object. You will be able to
149
+access the resource if you have permission:
150
151
+```python
152
+>>> session.get(f"{client.this_node.url}/some/protected/subpath")
153
```
0 commit comments