Do I need to use the PreAuthenticate set to true when trying to make an OAuth request for resource via HttpWebRequest using ASP.NET? or is this pre auth only for windows base credentials when trying to send requests to another .NET Host/endpoint?
Share
The only built-in authentication types System.Net supports are basic, digest, negotiate, NTLM, and Kerberos. However, OAuth 1 can use the Authorization header. If you implement (or use a library that implements),
IAuthenticationModule, you could conceivably usePreAuthenticatewith OAuth.