/PushBulletNet

.NET wrapper for PushBullet! This is my first wrapper.

Primary LanguageC#MIT LicenseMIT

This is my first time making an API wrapper. This is for the PushBullet API.

  1. Establish your client
PushBullientClient client = new PushBulletClient("YourAPIToken");
  1. Call your desired information
var data = await client.GetUserDataAsync();
var devices = await client.GetDevicesAsync();
var pushes = await client.GetPushesAsync();
var chats = await client.GetChatsAsync();
  1. For proper documentation, visit the wiki.