All Projects → danesparza → Pushover.NET

danesparza / Pushover.NET

Licence: MIT License
📣 .NET Wrapper for the Pushover API

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Pushover.NET

spontit-api-python-wrapper
Send functional, flexible push notifications to iOS, Android, and desktop devices (without your own app or website).
Stars: ✭ 35 (+29.63%)
Mutual labels:  notifications, pushover
Toastnotifications
Toast notifications for WPF allows you to create and display rich notifications in WPF applications. It's highly configurable with set of built-in options like positions, behaviours, themes and many others. It's extendable, it gives you possibility to create custom and interactive notifications in simply manner.
Stars: ✭ 507 (+1777.78%)
Mutual labels:  notifications, nuget
github-vacations
Automagically ignore all notifications related to work when you are on vacations
Stars: ✭ 20 (-25.93%)
Mutual labels:  notifications
PackageReferenceUpgrader
A VS2017 Extension that helps legacy apps migrate off of packages.config.
Stars: ✭ 27 (+0%)
Mutual labels:  nuget
gnome-email-notifications
Gnome Email Notifications
Stars: ✭ 65 (+140.74%)
Mutual labels:  notifications
NupkgWrench
Command line tool for reading and modifying nupkgs
Stars: ✭ 23 (-14.81%)
Mutual labels:  nuget
telegram-notification
Azure DevOps Extension to send custom notifications to Telegram
Stars: ✭ 17 (-37.04%)
Mutual labels:  notifications
VanillaToasts
Agnostic Javascript Library for Website Notifications
Stars: ✭ 89 (+229.63%)
Mutual labels:  notifications
Quizzine
Firebase Authentication,Realtime database,Firebase push notification,Firebase Quiz.The whole app contains dynamic data using firebase.
Stars: ✭ 37 (+37.04%)
Mutual labels:  notifications
pusherman
queuing system for push notifications
Stars: ✭ 17 (-37.04%)
Mutual labels:  notifications
vue-notification-bell
Vue.js notification bell component.
Stars: ✭ 64 (+137.04%)
Mutual labels:  notifications
react-notify
Tiny React's module that shows notifications.
Stars: ✭ 55 (+103.7%)
Mutual labels:  notifications
gitlab-ci-discord-webhook
⛓ Here's your serverless solution for sending build status from GitLab CI to Discord as webhooks.
Stars: ✭ 32 (+18.52%)
Mutual labels:  notifications
notifyme
react-notification-timeline is a react based component helps in managing the notification in time-based manner.
Stars: ✭ 94 (+248.15%)
Mutual labels:  notifications
chia-monitor
🍃 A comprehensive monitoring and alerting solution for the status of your Chia farmer and harvesters.
Stars: ✭ 131 (+385.19%)
Mutual labels:  notifications
Razor.SweetAlert2
A Razor class library for interacting with SweetAlert2
Stars: ✭ 98 (+262.96%)
Mutual labels:  notifications
King.Azure.Imaging
Image API & processing for Azure Web Apps
Stars: ✭ 20 (-25.93%)
Mutual labels:  nuget
mutegram
Disable Telegram Desktop Taskbar Flashing
Stars: ✭ 26 (-3.7%)
Mutual labels:  notifications
AspNetCore.Identity.RavenDb
RavenDB user/role persistent store for ASP.NET Core identity provider
Stars: ✭ 17 (-37.04%)
Mutual labels:  nuget
tanka-graphql
GraphQL server and execution libraries
Stars: ✭ 57 (+111.11%)
Mutual labels:  nuget

Pushover.NET Build status NuGet

.NET Wrapper for the Pushover API. Pushover makes it easy to send real-time notifications to your Android and iOS devices with customized messages and sounds.

Quick Start

Install the NuGet package

Install-Package PushoverNET

Next, you will need to provide Pushover.NET with your API key in code. Need help finding your API key? Check here: https://pushover.net/faq

In your application, call:

Pushover pclient = new Pushover("Your-apps-API-Key-here");
PushResponse response = pclient.Push(
              "Test title", 
              "This is the test message.", 
              "User-key-to-send-to-here"
          );

Examples

Pushing a message:
using PushoverClient;

namespace ConsoleApplication1
{
  class Program
  {
      static void Main(string[] args)
      {
          Pushover pclient = new Pushover("Your-apps-API-Key-here");

          PushResponse response = pclient.Push(
              "Test title", 
              "This is the test message.", 
              "User-key-to-send-to-here"
          );
      }
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].