linkheader/README.mkd

24 lines
601 B
Markdown
Raw Normal View History

2015-12-10 15:33:58 +01:00
# Golang Link Header Parser
Library for parsing HTTP Link headers.
2015-12-10 15:43:51 +01:00
Docs can be found on [the GoDoc page](https://godoc.org/github.com/TomNomNom/linkheader).
## Basic Example
2015-12-10 15:33:58 +01:00
```go
2015-12-10 15:43:51 +01:00
header := "<https://api.github.com/user/58276/repos?page=2>; rel=\"next\"," +
"<https://api.github.com/user/58276/repos?page=2>; rel=\"last\""
2015-12-10 15:33:58 +01:00
links := linkheader.Parse(header)
for _, link := range links {
fmt.Printf("URL: %s; Rel: %s\n", link.URL, link.Rel)
}
2015-12-10 15:43:51 +01:00
// 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
2015-12-10 15:33:58 +01:00
```