Files
Untappd.Net/README.md
Tommy Parnell 459a248e6d update readme
2015-04-08 15:55:54 -04:00

959 B

Untappd.Net

This is a c# wrapper around the Untappd API. This can be downloaded via Nuget

Coverage

So far only the Requests that do not require user tokens have been implemented

How do I use?

  • Request an API Key
  • You should be able to make a repository and call the get method with the thing you are requesting.

Note: Additional parameters can be passed into the Get Method with an IDictionary.


var ts = new UnAuthenticatedUntappdCredentials("key", "secret");
var t = new Repository().Get<UserDistinctBeers>(ts, "tparnell");


Contributing

  • There are no special instructions, submit pull requests against the master branch.
  • Releases to nuget occur on successful master branch builds

TODO

  • Actually Make unit tests
  • Add authentication wrapper
  • Implement API calls that require authentication tokens
  • Coveralls?
  • Code Quality?