Giter Site home page Giter Site logo

apns-client's Introduction

Client for APNS Proxy

This is a Ruby client library for applications which wish to use the HTTP API provided by the APNS Proxy application.

Installation

As with most Rubygems, just add the apns-client gem to your Gemfile and run bundle to install it.

gem 'apns-client', '~> 1.0'

Once installed, you can simply require it using require 'apns'.

Usage

Using the library is simple. In this example, be sure to replace the URL and auth key with the correct information for your APNS proxy installation.

# Create a client object
client = APNS::Client.new('https://apns.yourdomain.com', 'abc123abc123')

# Create a notification
notification = APNS::Notification.new
notification.alert_body = "Hello World!"
notification.sound = "notification.caf"
notification.badge = 10

# Send the notification to a device. 
response = client.notify(device_identifier, notification)
response.success?               # => Has the notification been added successfully?
response.device_unsubscribed?   # => Has the device been unsubscribed?

# Register a device
response = client.register(device_identifier, "Adam's iPhone 5")
response                        # => true or false 

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.