Go to file
2017-05-04 09:43:35 +00:00
script Fixes lint issues, adds profile script 2016-06-20 00:20:27 +01:00
.gitignore Fixes lint issues, adds profile script 2016-06-20 00:20:27 +01:00
.travis.yml Fixes links with no rel attribute; removes old Go versions from travis 2017-05-04 09:43:35 +00:00
CONTRIBUTING.mkd Adds gotemplate files 2016-03-28 15:11:23 +01:00
examples_test.go Adds String method for Links 2016-06-17 00:32:30 +01:00
LICENSE Adds gotemplate files 2016-03-28 15:11:23 +01:00
main_test.go Fixes links with no rel attribute; removes old Go versions from travis 2017-05-04 09:43:35 +00:00
main.go Fixes links with no rel attribute; removes old Go versions from travis 2017-05-04 09:43:35 +00:00
README.mkd Fixes links with no rel attribute; removes old Go versions from travis 2017-05-04 09:43:35 +00:00

Golang Link Header Parser

Library for parsing HTTP Link headers. Requires Go 1.6 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