mirror of https://github.com/dapr/docs.git
parent
1fa6bc30c0
commit
d0448ac7b7
|
@ -66,6 +66,8 @@ import (
|
||||||
|
|
||||||
2. Create the client
|
2. Create the client
|
||||||
|
|
||||||
|
If mTLS is disabled:
|
||||||
|
|
||||||
```go
|
```go
|
||||||
// Get the Dapr port and create a connection
|
// Get the Dapr port and create a connection
|
||||||
daprPort := os.Getenv("DAPR_GRPC_PORT")
|
daprPort := os.Getenv("DAPR_GRPC_PORT")
|
||||||
|
@ -80,6 +82,25 @@ import (
|
||||||
client := pb.NewDaprClient(conn)
|
client := pb.NewDaprClient(conn)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If mTLS is enabled:
|
||||||
|
|
||||||
|
```go
|
||||||
|
tlsConfig := &tls.Config{
|
||||||
|
InsecureSkipVerify: true,
|
||||||
|
}
|
||||||
|
|
||||||
|
creds := credentials.NewTLS(tlsConfig)
|
||||||
|
conn, err := grpc.Dial(daprAddress, grpc.WithTransportCredentials(creds))
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
fmt.Println(err)
|
||||||
|
}
|
||||||
|
defer conn.Close()
|
||||||
|
|
||||||
|
// Create the client
|
||||||
|
client := pb.NewDaprClient(conn)
|
||||||
|
```
|
||||||
|
|
||||||
3. Invoke the Save State method
|
3. Invoke the Save State method
|
||||||
|
|
||||||
```go
|
```go
|
||||||
|
|
Loading…
Reference in New Issue