Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/poudel/samlutils

SAML utils
https://github.com/poudel/samlutils

auth0 okta-saml onelo pars saml-metadata saml2

Last synced: 29 days ago
JSON representation

SAML utils

Awesome Lists containing this project

README

        

# saml utils

## IDP metadata parsing

```go
package main

import (
"fmt"
"github.com/poudel/samlutils"
)

func main() {
m := samlutils.ParseIdpMetadata(samlutils.EXAMPLE_OKTA_METADATA)
fmt.Println("Valid:", m.IsValid())
fmt.Println("Metadata:", m)
}
```