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

https://github.com/poudel/samlutils

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

auth0 okta-saml onelo pars saml-metadata saml2

Last synced: 2 months 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)
}
```