We currently have multiple WIF (.NET 4.5) enabled MVC web apps. These apps currently use FAM/SAM and SAML tokens.
However, we are looking at adding JSON Web Token support to those apps so that pure JS clients may also consume them.
Are there any good samples for how to use the Microsoft JSON Web Token Handler (client and server) or am I better off decompiling it to figure out how it works?
The Microsoft SAM module (.NET 4.5) appears to only read cookies. How do you get the stock SAM to read a JWT token from the HTTP authorization header? Is there a new HTTP module for reading JWT tokens from the HTTP header or do I need to write my own?
scott