Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nidhi-canopas/99acc103c77569e151f3ff2d8fc65948 to your computer and use it in GitHub Desktop.

Select an option

Save nidhi-canopas/99acc103c77569e151f3ff2d8fc65948 to your computer and use it in GitHub Desktop.
response, err := fcmClient.Send(context.Background(), &messaging.Message{
Notification: &messaging.Notification{
Title: "Congratulations!!",
Body: "You have just implement push notification",
},
Token: "sample-device-token", // it's a single device token
})
if err != nil {
return err
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment