Welcome Untappd.Net

This is a simple C# Wrapper over the Untappd API

Getting Help

You can find help from us by visiting our chat room, reading the untappd api docs, or by submitting issues.

Getting Started

Before you use our wrapper you need an API key, and secret. You will have to request that from the Untappd guys. Once you have that its as simple as calling the repository with the correct request. Note some parts of the Untappd API require an oauth token, which you can get with other oauth providers. Our library does have a AuthenticationHelper class which can help you generate the various url's needed to interact with Untappd's API.

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

Post and/or Action requests are similar.

var ts = new AuthenticatedUntappdCredentials("token", "key", "secret");
var checkin = new CheckIn("-5", "EST", 1044097) { Shout = "Awesome Brew", Rating = 4 };
var response = repository.Post(ts, checkin);

Authors and Contributors