indieauth/vendor/linkheader
2018-09-29 16:49:54 +02:00
..
script Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02:00
.gitignore Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02:00
.travis.yml Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02:00
CONTRIBUTING.mkd Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02:00
examples_test.go Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02:00
LICENSE Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02:00
main_test.go Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02:00
main.go Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02:00
README.mkd Copied indieauth pkg from ekster 2018-09-29 16:49:54 +02: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