SkillAgentSearch skills...

Pushover.NET

:mega: .NET Wrapper for the Pushover API

Install / Use

/learn @danesparza/Pushover.NET
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

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"
          );
      }
  }
}
View on GitHub
GitHub Stars28
CategoryDevelopment
Updated1y ago
Forks24

Languages

C#

Security Score

80/100

Audited on Jul 17, 2024

No findings