Skip to content

A generated swagger client for making requests to gotify/server.

License

Notifications You must be signed in to change notification settings

intfrr/go-api-client

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gotify Golang API-Client travis-badge

Generated with swagger-go.

Example

package main

import (
	"github.com/gotify/go-api-client/gotify"
	"net/url"
	"net/http"
	"log"
	"github.com/gotify/go-api-client/client/message"
	"github.com/gotify/server/model"
	"github.com/gotify/go-api-client/auth"
)

const (
	gotifyURL ="https://push.gotify.url"
	applicationToken = "AxNVvRfx9.ZKCTj"
)

func main() {
	myURL, _ := url.Parse(gotifyURL)
	client := gotify.NewClient(myURL, &http.Client{})
	versionResponse, err := client.Version.GetVersion(nil)

	if err != nil {
		log.Fatal("Could not request version ", err)
		return
	}
	version := versionResponse.Payload
	log.Println("Found version", version.Version)

	params := message.NewCreateMessageParams()
	params.Body = &model.Message{
		Title: "my title",
		Message: "my message",
		Priority: 5,
	}
	_, err = client.Message.CreateMessage(params, auth.TokenAuth(applicationToken))

	if err != nil {
		log.Fatal("Could not send message ", err)
		return
	}
	log.Println("Message Sent!")
}

Update Instructions

  • Change version in Makefile.
  • Run make clean generate
  • Commit changes

About

A generated swagger client for making requests to gotify/server.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Makefile 56.7%
  • Go 43.3%