Send Notifications with Go

Learn how to send push notifications to your phone with Go.

Pushinator is a powerful push notification service that lets you send real-time updates to iPhone, iPad, and Android devices. In this guide, we will show how to use Pushinator with Go.

1

Set up your notification channel and devices

First, log in to the Pushinator Console and create a channel (e.g., "Go Alerts"). Save Channel ID, obtain an API token and save it for later use too.


Install the Pushinator app from the App Store or Google Play on your devices. Use the app to scan your channel’s QR code and subscribe your devices to notifications.

2

Add the Pushinator package to your project

Install the official Pushinator Go package in your Go project.

go get github.com/appricos/pushinator-go
3

Send notifications from your code

Use the pushinator package in your Go code to send push notifications to all subscribers of a channel.

package main

import (
    "fmt"
    "log"

    pushinator "github.com/appricos/pushinator-go"
)

func main() {
    client := pushinator.NewClient("PUSHINATOR_API_TOKEN")

    err := client.SendNotification("PUSHINATOR_CHANNEL_ID", "Hello from Go! 🚀")
    if err != nil {
        log.Fatalf("Error: %v", err)
    }

    fmt.Println("✅ Notification sent successfully!")
}

Need help?

Drop us a message at [email protected], and we will try our best to assist you. Feel free to request a feature or integration, or let us know if there are any issues on our side.