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 6649c1a commit 79d8691Copy full SHA for 79d8691
README.md
@@ -36,7 +36,7 @@ To use this package you first need valid client credentials (see [below](#obtain
36
37
```python
38
from solid_client_credentials import SolidClientCredentialsAuth, DpopTokenProvider
39
-import requests
+import requests # or httpx
40
41
client_id = 'your-id'
42
client_secret = 'your-secret'
@@ -50,7 +50,7 @@ token_provider = DpopTokenProvider(
50
client_id=client_id,
51
client_secret=client_secret
52
)
53
-# use the tokens with the requests library
+# use the tokens with the requests (or httpx) library
54
auth = SolidClientCredentialsAuth(token_provider)
55
56
res = requests.get('https://example.org/private/stuff', auth=auth)
0 commit comments