Popularity
3.4
Declining
Activity
0.0
Stable
1
4
1

Monthly Downloads: 15
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Security    

planb-token-introspection alternatives and similar packages

Based on the "Security" category.
Alternatively, view planb-token-introspection alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of planb-token-introspection or a related project?

Add another 'Security' Package

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.