Hello everyone, I want to implement
# spicedb
b
Hello everyone, I want to implement spicedb for my spring boot application. Can anyone help for which resources to look into.
v
👋 we don't provide spring-boot integration, just an
authzed-java
driver, so you are on your own wiring it up in your Spring Boot application. If you are looking into learning SpiceDB fundamentals, I'd probably start with

https://www.youtube.com/watch?v=AoK0LrkGFDYâ–¾

and https://authzed.com/docs/spicedb/getting-started/discovering-spicedb
here is an example: https://authzed.com/docs/spicedb/getting-started/protecting-a-blog, it allows you to choose the language
b
Okay thanks for replying.
I have one more question
If I implement spicedb independently and authentication service in spring boot which will do rest calls to spicedb to get the authorities or check the authorities. Can I get any implementation example like that.
@vroldanbet
v
As I mentioned, we don't have any examples around Spring Boot integration. The API you want to use to check if an entity is authorized to perform an operation is `CheckPermission`: https://buf.build/authzed/api/docs/main:authzed.api.v1#authzed.api.v1.PermissionsService.CheckPermission You want to make sure you've first written a schema, and then some process writes the relationships that form the graph in SpiceDB
140 Views