mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-05 22:17:40 +03:00
WIP: Docs
This commit is contained in:
parent
1e7ae885b4
commit
ae7bfb2c97
28 changed files with 822 additions and 1 deletions
27
examples/publish-go/main.go
Normal file
27
examples/publish-go/main.go
Normal file
|
@ -0,0 +1,27 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
"net/http"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// Without additional headers (priority, tags, title), it's a one liner.
|
||||
// Check out https://ntfy.sh/mytopic in your browser after running this.
|
||||
http.Post("https://ntfy.sh/mytopic", "text/plain", strings.NewReader("Backup successful 😀"))
|
||||
|
||||
// If you'd like to add title, priority, or tags, it's a little harder.
|
||||
// Check out https://ntfy.sh/phil_alerts in your browser.
|
||||
req, err := http.NewRequest("POST", "https://ntfy.sh/phil_alerts",
|
||||
strings.NewReader("Remote access to phils-laptop detected. Act right away."))
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
req.Header.Set("Title", "Unauthorized access detected")
|
||||
req.Header.Set("Priority", "urgent")
|
||||
req.Header.Set("Tags", "warning,skull")
|
||||
if _, err := http.DefaultClient.Do(req); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue