Popularity
1.6
Stable
Activity
5.2
Growing
17
1
6
Programming language: Go
License: MIT License
Tags:
Authentication & OAuth
cookiestxt alternatives and similar packages
Based on the "Authentication and OAuth" category.
Alternatively, view cookiestxt alternatives based on common mentions on social networks and blogs.
-
keto
The most scalable and customizable permission server on the market. Fix your slow or broken permission system with Google's proven "Zanzibar" approach. Supports ACL, RBAC, and more. Written in Go, cloud native, headless, API-first. Available as a service on Ory Network and for self-hosters. -
oidc
Easy to use OpenID Connect client and server library written for Go and certified by the OpenID Foundation -
go-guardian
Go-Guardian is a golang library that provides a simple, clean, and idiomatic way to create powerful modern API and web authentication. -
sessiongate-go
A driver for the SessionGate Redis module - easy session management using the Go language. -
signedvalue
DISCONTINUED. Compatibility layer for tornado's signed values (and secure cookies consequently) -
gosession
This is quick session for net/http in GoLang. This package is perhaps the best implementation of the session mechanism, at least it tries to become one.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
Do you think we are missing an alternative of cookiestxt or a related project?
README
cookiestxt
cookiestxt implement parser of cookies txt format
Usage
package main
import (
"log"
"strings"
"github.com/mengzhuo/cookiestxt"
)
func main() {
buf := strings.NewReader(`
# This example taken from http://www.cookiecentral.com/faq/#3.5
#HttpOnly_.netscape.com TRUE / FALSE 946684799 NETSCAPE_ID 100103
`)
cl, err := cookiestxt.Parse(buf)
log.Print(cl, err)
}
$ go run main.go
[NETSCAPE_ID=100103; Path=/; Domain=netscape.com; Expires=Fri, 31 Dec 1999 23:59:59
GMT; HttpOnly] <nil>