DweetSharp
1.0.0
This is a .NET open-source library to interact with the dweet.io REST API. It gives you ridiculously simple messaging and alerts for the Internet of Things.
Using DweetSharp is as easy as . For a detailed documentation of the dweet.io API please have a look at this.
//using Json.NET for serialization
string serializedObject = JsonConvert.SerializeObject(someIoTMeasurementObject);
DweetIO.DweetFor("NameOfSomeThing", serializedObject);
string latestDweet = await DweetIO.GetLatestDweetFor("NameOfSomeThing");