IdentityServer / IdentityServer3.AccessTokenValidation

OWIN Middleware to validate access tokens from IdentityServer3
Apache License 2.0
91 stars 149 forks source link

Change base type of BackchannelHttpHandler and IntrospectionHttpHandler to HttpMessageHandler #80

Closed dprochownik closed 8 years ago

dprochownik commented 8 years ago

Changing in the options base type of BackchannelHttpHandler and IntrospectionHttpHandler from WebRequestHandler to HttpMessageHandler would allow us to use any http massage handler.

For example we could use OwinHttpMessageHandler for a backchannel communication which has a significant impact on the ability to create inmemory integration tests for an applications which uses AccessTokenValidation package.

dnfclas commented 8 years ago

Hi @dprochownik, I'm your friendly neighborhood .NET Foundation Pull Request Bot (You can call me DNFBOT). Thanks for your contribution! You've already signed the contribution license agreement. Thanks! We will now validate the agreement and then real humans will evaluate your PR.

TTYL, DNFBOT;

leastprivilege commented 8 years ago

thanks!