{"name":"Untappd.net","tagline":"C# Wrapper over untappd api","body":"### Welcome Untappd.Net\r\n\r\nThis is a simple C# Wrapper over the [Untappd API](https://untappd.com/)\r\n\r\n### Getting Help\r\n\r\nYou can find help from us by visiting [our chat room](https://gitter.im/tparnell8/Untappd.Net), reading the [untappd api docs](https://untappd.com/api/docs), or by submitting issues.\r\n\r\n### Getting Started\r\n\r\nBefore 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](https://github.com/RockstarLabs/OwinOAuthProviders). Our library does have a AuthenticationHelper class which can help you generate the various url's needed to interact with Untappd's API.\r\n\r\n```csharp\r\n\r\nvar ts = new UnAuthenticatedUntappdCredentials(\"key\", \"secret\");\r\nvar t = new Repository().Get(ts, \"tparnell\");\r\nvar t = new Repository().Get(ts, \"BeerIdHere\");\r\n\r\n```\r\n\r\nPost and/or Action requests are similar.\r\n\r\n\r\n```csharp\r\n\r\nvar ts = new AuthenticatedUntappdCredentials(\"token\", \"key\", \"secret\");\r\nvar checkin = new CheckIn(\"-5\", \"EST\", 1044097) { Shout = \"Awesome Brew\", Rating = 4 };\r\nvar response = repository.Post(ts, checkin);\r\n\r\n```\r\n\r\n### Authors and Contributors\r\n* Tommy Parnell (@tparnell8)\r\n* Rodrigo P Reis (@rodkings)","google":"UA-48128396-2","note":"Don't delete this file! It's used internally to help with page regeneration."}