Cs + Push7 = Csh7
Csh7 is very simple Push7 library for C# users.
This project is not official!
Using with Client()
using Csh7;
Push7.Client(string appNumber, string apiKey);
Push7.GetInfo(string datakey); // Get Application Info
Push7.Push(string title, string content, string iconURL, string URL); // Create Push
little more real example
using Csh7;
Push7.Client("12831738", "219182s390138")
Push7.GetInfo("name");
// will return specified key value or any exception.
Push7.Push("Example Push", "This is test push.", "https://example.com/icon.png", "https://example.com");
// will return pushid or any exception.
for get more infomation about push7 API, please go here!
PM> Install-Package Csh7
- Push7: Awesome Service!
- DynamicJson: Using in project.
- a-r-g-v/push7-python: Coolest official python library, this project inspired from this!