Skip to content

HTTP client for retrieving data from Raider.io - written in Golang. Up-to-date as of Raider.io Public API v0.46.25.

License

Notifications You must be signed in to change notification settings

munsy/raideriogo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

May 24, 2019
4033206 · May 24, 2019

History

78 Commits
Jun 3, 2018
Dec 6, 2018
Jun 3, 2018
Dec 16, 2018
Jun 14, 2018
Jun 3, 2018
Jun 3, 2018
May 24, 2019
Jun 4, 2018
Jun 4, 2018
Jun 4, 2018
Jun 6, 2018
Dec 6, 2018
Dec 6, 2018
Jun 4, 2018
Jun 4, 2018
Jun 4, 2018

Repository files navigation

raideriogo

Build Status Documentation Go Report Card license

Raider.io bindings written in golang.

Up-to-date as of Raider.io Public API v0.46.7

Install

$ go get github.com/munsy/raideriogo

A Very Simple Example

package main

import(
        "fmt"

        "github.com/munsy/raideriogo"
)

func main() {
        client := raideriogo.New()

        character, err := client.GetCharacterProfile("us", "thrall", "munsy", "")

        if nil != err {
                panic(err)
        }

        fmt.Printf("Name: %v\nClass: %v\nRace: %v\n", character.Name, character.Class, character.Race)
}
$ go build
$ ./raideriotest
Name: Munsy
Class: Druid
Race: Troll

Disclaimer

I am in no way associated with the fine folks over at https://www.raider.io other than being a fan of their work and wanting to use it with my own stuff.

About

HTTP client for retrieving data from Raider.io - written in Golang. Up-to-date as of Raider.io Public API v0.46.25.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages