Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.13 KB

README.md

File metadata and controls

25 lines (18 loc) · 1.13 KB

OAuth.net

NuGet version Nuget downloads Build And Test codecov MIT License

Library to handle the OAuth protocol. Implements http://tools.ietf.org/html/rfc5849

Transparent authentication

You can register a message handler to the HttpClient you are using that will handle the oAuth signing.

            OAuth.OAuthMessageHandler _handler = new OAuth.OAuthMessageHandler(
                oauthToken.ApiKey,
                oauthToken.Secret,
                oauthToken.Token,
                oauthToken.TokenSecret);
            HttpClient client = new HttpClient(_handler);