ライブラリの選定
色々なオープンソースを使わせてもらい感謝してます!
star: 91 最終更新2/6
star: 12 最終更新5/12
star: 14 5/18
今回はGAEで使うため、httpクライアントを差し替えれるものを使いたかった。
あと、コードを見てみると、送信用のパラメータが一通り揃っているedganiukovさんの
ライブラリが良さそう
実装
func SendNotification(ctx context.Context, body string) error {
token := "sample_token"
// or
tokens :=[]string{ "sample_token", "sample_token2" }
msg := &fcm.Message{
Notification: &fcm.Notification{
Body: body,
Badge: "1",
},
}
if len(tokens) == 1 {
msg.Token = token
} else {
msg.RegistrationIDs = tokens
}
// Create a FCM client to send the message.
o := fcm.WithHTTPClient(urlfetch.Client(ctx)) // GAEようにhttp clientを差し替える
client, _ := fcm.NewClient(os.Getenv("FIREBASE_API_KEY"), o)
// Send the message and receive the response without retries.
response, err := client.Send(msg)
if err != nil {
return err
}
log.Debugf(ctx, "%+v", response)
return nil
}
0 件のコメント:
コメントを投稿