Notifo is a service which allows you to send push notifications to mobile clients from a server via a REST interface.
CFNotifo is an API wrapper for the Notifo service which makes subscribing users and sending notifications easy peasy.
- ColdFusion 8+, Railo or OpenBD
- A Notifo service account, for sending notifications
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"); }
An online demo of CFNotifo is available on my blog