Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danesparza/pushover.net
:mega: .NET Wrapper for the Pushover API
https://github.com/danesparza/pushover.net
c-sharp notifications nuget pushover
Last synced: 2 months ago
JSON representation
:mega: .NET Wrapper for the Pushover API
- Host: GitHub
- URL: https://github.com/danesparza/pushover.net
- Owner: danesparza
- License: mit
- Created: 2013-08-28T15:05:24.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T08:27:36.000Z (almost 2 years ago)
- Last Synced: 2024-11-14T22:35:07.868Z (3 months ago)
- Topics: c-sharp, notifications, nuget, pushover
- Language: C#
- Homepage:
- Size: 324 KB
- Stars: 28
- Watchers: 3
- Forks: 23
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Pushover.NET [![Build status](https://dev.azure.com/danesparza0161/Pushover.NET/_apis/build/status/Pushover.NET)](https://dev.azure.com/danesparza0161/Pushover.NET/_build/latest?definitionId=4) [![NuGet](https://img.shields.io/nuget/v/PushoverNET.svg)](https://www.nuget.org/packages/PushoverNET/)
============.NET Wrapper for the [Pushover](http://pushover.net) 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](http://www.nuget.org/packages/PushoverNET/)
```powershell
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:
```CSharp
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:
```CSharp
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"
);
}
}
}
```