New here! Sorry if this question has already been...
# spicedb
d
New here! Sorry if this question has already been addressed somewhere, but I have been working with SpiceDB locally and in AWS with C# (built the grpc client from the proto files) and I want to test my c# vs the go client. However, nothing I do seems to want to connect to my spice instances. Locally or in AWS. here is a snippet:
Copy code
func main() {
    systemCerts, err := grpcutil.WithSystemCerts(grpcutil.VerifyCA)
    if err != nil {
        log.Fatalf("unable to load system CA certs: %s", err)
    }

    client, err := authzed.NewClient(
        "definitelynotalink",
        grpcutil.WithBearerToken("somerandomkeyhere"),
        systemCerts,
    )

    if err != nil {
        panic(err)
    }
}
Even with my endpoint set to
definitelynotalink
, it still "connects". Can anyone spot what I am doing wrong?