I've been struggling a little with
# spicedb
j
I've been struggling a little with trying to load authzed gRPC proto definitions into Postman due to dependency et al. issues. Anyone have any luck here? Or any alternative GUIs for testing gRPC requests? FWIW, the zed client works fine, but I'd love to test out raw grpc requests.
v
SpiceDB supports gRPC reflection, but only
v1
. I used to use it with Postman, but ever since gRPC folks promoted reflection from
v1alpha
to
v1
Postman reflection calls to SpiceDB fail because it keeps asking for
v1alpha
instead of
v1
. I don't see much written about it but it like there are still clients stuck at
v1alpha
.
ah, found the bug in SpiceDB. go grpc does register both v1 and v1alpha, but one of our libraries skipped v1alpha, so reflection calls from Postman would fail. I'll open a PR