2017-07-24 07:06:23 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
|
|
|
|
pb "github.com/appleboy/gorush/rpc/proto"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2017-10-19 01:24:47 +00:00
|
|
|
address = "localhost:9000"
|
2017-07-24 07:06:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
// Set up a connection to the server.
|
|
|
|
conn, err := grpc.Dial(address, grpc.WithInsecure())
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("did not connect: %v", err)
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
|
|
|
c := pb.NewGorushClient(conn)
|
|
|
|
|
|
|
|
r, err := c.Send(context.Background(), &pb.NotificationRequest{
|
|
|
|
Platform: 2,
|
|
|
|
Tokens: []string{"1234567890"},
|
|
|
|
Message: "test message",
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("could not greet: %v", err)
|
|
|
|
}
|
|
|
|
log.Printf("Success: %t\n", r.Success)
|
|
|
|
log.Printf("Count: %d\n", r.Counts)
|
|
|
|
}
|