Coder Social home page Coder Social logo

cfnotifo's Introduction

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.