Go to file
2015-12-10 13:53:34 -05:00
.travis.yml Removes Go 1.0 and 1.1 from Travis config 2015-12-10 09:51:28 -05:00
examples_test.go Adds LICENSE, updates examples 2015-12-10 09:43:51 -05:00
LICENSE Adds LICENSE, updates examples 2015-12-10 09:43:51 -05:00
main_test.go Initial 2015-12-10 09:33:58 -05:00
main.go Initial 2015-12-10 09:33:58 -05:00
README.mkd Makes README example valid 2015-12-10 13:53:34 -05:00

Golang Link Header Parser

Library for parsing HTTP Link headers. Requires Go 1.2 or higher.

Docs can be found on the GoDoc page.

Build Status

Basic Example

package main

import (
	"fmt"

	"github.com/tomnomnom/linkheader"
)

func main() {
	header := "<https://api.github.com/user/58276/repos?page=2>; rel=\"next\"," +
		"<https://api.github.com/user/58276/repos?page=2>; rel=\"last\""
	links := linkheader.Parse(header)

	for _, link := range links {
		fmt.Printf("URL: %s; Rel: %s\n", link.URL, link.Rel)
	}
}

// Output:
// URL: https://api.github.com/user/58276/repos?page=2; Rel: next
// URL: https://api.github.com/user/58276/repos?page=2; Rel: last