Skip to content

Commit 0e7135a

Browse files
committed
Add readme as well
1 parent 44d8d5c commit 0e7135a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -97,3 +97,21 @@ resp = client.CheckPermission(CheckPermissionRequest(
9797
))
9898
assert resp.permissionship == CheckPermissionResponse.PERMISSIONSHIP_HAS_PERMISSION
9999
```
100+
101+
### Insecure Client Usage
102+
When running in a context like `docker compose`, because of Docker's virtual networking,
103+
the gRPC client sees the SpiceDB container as "remote." It has built-in safeguards to prevent
104+
calling a remote client in an insecure manner, such as using client credentials without TLS.
105+
106+
However, this is a pain when setting up a development or testing environment, so we provide
107+
the `InsecureClient` as a convenience:
108+
109+
```py
110+
from authzed.api.v1 import Client
111+
from grpcutil import bearer_token_credentials
112+
113+
client = Client(
114+
"spicedb:50051",
115+
"my super secret token"
116+
)
117+
```

0 commit comments

Comments
 (0)