Skip to content

AlexGhiondea/OAuth.net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);

About

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

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors