Description
Token Introspection for PlanB.
Description
This package provides token introspection functionality for the PlanB token provider.
README.md
Token Introspection for PlanB
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.