-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
doc.go
38 lines (38 loc) · 846 Bytes
/
doc.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Package fcm provides Firebase Cloud Messaging functionality for Golang
//
// Here is a simple example illustrating how to use FCM library:
//
// func main() {
// ctx := context.Background()
// client, err := fcm.NewClient(
// ctx,
// fcm.WithCredentialsFile("path/to/serviceAccountKey.json"),
// )
// if err != nil {
// log.Fatal(err)
// }
//
// // Send to a single device
// token := "test"
// resp, err := client.Send(
//
// ctx,
// &messaging.Message{
// Token: token,
// Data: map[string]string{
// "foo": "bar",
// },
// },
//
// )
//
// if err != nil {
// log.Fatal(err)
// }
//
// fmt.Println("success count:", resp.SuccessCount)
// fmt.Println("failure count:", resp.FailureCount)
// fmt.Println("message id:", resp.Responses[0].MessageID)
// fmt.Println("error msg:", resp.Responses[0].Error)
// }
package fcm