File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -97,3 +97,21 @@ resp = client.CheckPermission(CheckPermissionRequest(
97
97
))
98
98
assert resp.permissionship == CheckPermissionResponse.PERMISSIONSHIP_HAS_PERMISSION
99
99
```
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
+ ```
You can’t perform that action at this time.
0 commit comments