@hackage / planb-token-introspection

Token Introspection for PlanB

Latest0.1.4.0

About

Metadata

  • Last updated , by mtesseract
  • License BSD-3-Clause
  • Maintained by: mtesseract@silverratio.net

  • Lottery factor: 0

Links

Installation

Readme

Token Introspection for PlanB Hackage version Stackage version Build Status

This package provides token introspection functionality for PlanB.

Example

printTokenInfo :: ByteString -> IO ()
printTokenInfo token = do
  introspector <- PlanB.new "https://planb-endpoint"
  tokenInfo <- PlanB.introspectToken introspector token
  print tokenInfo

If the PlanB introspection endpoint to use can be retrieved from the environment variable PLANB_INTROSPECTION_ENDPOINT, then one can alternatively use

  introspector <- PlanB.newFromEnv Nothing

for creating the PlanB introspector.