An open API service indexing awesome lists of open source software.

https://github.com/tomnomnom/linkheader

Golang HTTP Link header parser
https://github.com/tomnomnom/linkheader

Last synced: about 1 year ago
JSON representation

Golang HTTP Link header parser

Awesome Lists containing this project

README

          

# Golang Link Header Parser

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

Docs can be found on [the GoDoc page](https://godoc.org/github.com/tomnomnom/linkheader).

[![Build Status](https://travis-ci.org/tomnomnom/linkheader.svg)](https://travis-ci.org/tomnomnom/linkheader)

## Basic Example

```go
package main

import (
"fmt"

"github.com/tomnomnom/linkheader"
)

func main() {
header := "; rel=\"next\"," +
"; 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
```