Skip to content

TouchtechAB/OAuth.net

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OAuth.net

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

Releases

No releases published

Packages

No packages published

Languages

  • C# 96.0%
  • Batchfile 4.0%