Skip to content

bobsilverberg/CFNotifo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

CFNotifo - A CFML (ColdFusion) Wrapper for the Notifo API

What is Notifo?

Notifo is a service which allows you to send push notifications to mobile clients from a server via a REST interface.

What is CFNotifo?

CFNotifo is an API wrapper for the Notifo service which makes subscribing users and sending notifications easy peasy.

Requirements

  1. ColdFusion 8+, Railo or OpenBD
  2. A Notifo service account, for sending notifications

Usage

Create an instance of CFNotifo, passing in the credentials for the service: CFNotifo = createObject("component","CFNotifo").init(username="serviceNotifoUsername",apiSecret="serviceAPISecret");

Subscribe a user to your service: response = CFNotifo.subscribe(username="userToSubscribe"); if (response.success) { // It worked! } else { // Something went wrong writeDump(var=response.notifoResponse, label="Notifo's Response"); }

Send a notification to a user: response = CFNotifo.send(to="subscribedUser", msg="Message to send"); if (response.success) { // It worked! } else { // Something went wrong writeDump(var=response.notifoResponse, label="Notifo's Response"); }

Demo

An online demo of CFNotifo is available on my blog