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");
- β Lock
- β Unlock
- β RemoveLock
- β DweetFor
- β DweetQuietlyFor
- β GetLatestDweetFor
- β GetDweetsFor
- β ListenForDweetsFrom
- β GetStoredDweetsFor
- β GetStoredAlertsFor
- β Alert
- β GetAlertFor
- β RemoveAlertFor
- retrieving dweets returns a JSON which you will have to parse according to your needs
- the library is not fully tested yet