And get notified on your smartphone when it happens.
Get notified from within your apps or services via simple http requests.
Add some lines to your code, an alert comes to notify you.
Saves you time and effort, and keep you up to date.
You issue an http request, we deliver you a notification.
In your web app, add the code after a successful transaction, and we will do the rest.
$ npm install instapush
var instapush = require("instapush"); instapush.settings({ id:'52eed96ea2a8f0f', secret:'9a96794fec44481de5', }); instapush.notify({"event":"search","trackers":{"term":"new term"}} ,function (err, response){ console.log(response); });
require("lib/instapush.php"); $ip = InstaPush::getInstance("APPLICATION_ID", "APPLICATION_SECRET"); $ip->track("signup", array( "email"=> "[email protected]" ));Download PHP Wrapper - GitHub
$ pip install instapush
from instapush import Instapush, App app = App(appid='52eed96ea2a8f0f', secret='9a96794fec44481de5') app.notify(event_name='search', trackers={ 'email': '[email protected]'})Download Python Wrapper - GitHub
$ gem install instapush-api
require 'instapush' app = Instapush::Application.new 'id', 'secret' event = Instapush::Event.new 'event-name' event.tracker= { :version => '0.9.0' } app.push eventDownload Ruby Wrapper - GitHub
app := instapush.App{Id: "INSTAPUSH_APP_ID", Secret: "INSTAPUSH_APP_SECERT"} res, err := app.Send("SignUp", map[string]interface{}{ "First Name": "James", "Last Name": "Bond", }) fmt.Printf("%s\n", res)Download Go Wrapper - GitHub
curl -X POST \ -H "x-instapush-appid: 52d477b2a4c48a5a7068ae0f" \ -H "x-instapush-appsecret: 2364eb29c3774016fd80e9b7a471f97a" \ -H "Content-Type: application/json" \ -d '{"event":"registeration","trackers":{"email":"http://google.com "}}' \ https://api.instapush.im/post
integrate Instapush with Zapier and/or IFTTT to connect and automate more than 280+ web services with push notifications