Notifications

The notifications module supports push notifications to iOS and Android devices. However, there is some application configuration that needs to be performed before such messages can be sent. This configuration is required so that Playblazer platform can talk to the respective push notification services (APNS - Apple Push Notification Service - for iOS and GCM - Google Cloud Messaging service - for Android).

The UI for this configuration is not yet available - so, these configuration parameters need to be communicated to us over email for now. It will be available along with rest of the UI for registration and application creation with Playblazer platform.

For APNS, we need to store the following details:

  • SSL Certificate - development: in PEM format with private key included
  • SSL Certificate - production: in PEM format with private key included
  • Application bundle name
  • Whether to enable push notifications to iOS devices or not
    • maybe required to disable the push notifications to debug issues with the code.

For GCM service, we need to store the following details:

  • Sender ID: This is the numeric ID when an API project is created using Google API console (https://code.google.com/apis/console/)

  • API Key: The API access key

    • can be obtained from the above URL - after logging in, look under API Access -> Simple API Access under the project properties. We need to use a Server Key.
  • Whether to enable push notifications to Android devices

    • useful to disable the push notifications to debug issues with the code.

Apart from this application level configuration, each device that is to receive the push notification needs to be registered with Playblazer platform using its unique token.

The workflow goes something like this:

  1. The application notifies the corresponding service (APNS for iOS apps or GCM for Android apps) that it’s interested in receiving push notifications.
  2. The service issues a unique device token if it successfully registers the device.
  3. The application calls the Register Device Token API below to pass on this token to Playblazer platform along with the user identifier for which to register this device token.
  4. Playblazer platform makes note of the device token under the user profile.
  5. Playblazer platform can now start pushing notifications to the said device/user profile using the application configuration (API key or PEM certificates) and the device token.
  6. When the user wishes to unregister for receiving push notifications (either by uninstalling the application or using some setting in the application), the application can unregister the device token from Playblazer platform using the Unregister Device Token API (covered below). After this, Playblazer platform will stop pushing notifications through APNS or GCM. However, the application can still receive in-app notifications.

API: Get Notifications

Get Notifications API

URL: {BASE_URL}/app/<APP_ID>/notifications/<MODE>/<USER_ID>

Request Method: HTTP GET

Parameter Mandatory Type Description
APP_ID Yes Alpha-numeric The application ID issued by the Playblazer platform when the app was created
secret_key Yes Alpha-numeric The secret key issued by the Playblazer platform when the app was created
MODE Yes String The mode for user ID interpretation
USER_ID Yes String The user ID retrieving the notifications.
limit No Numeric No. of results to return in the output
fmt No String One of (json | xml) - the format of output

In case of error, the output will contain status=error and error details encoded as explained earlier.

If successful, the output will contain the usual status=ok along with a dictionary called notifications.

The notifications dictionary has two items:

  • count: indicating the no. of notifications messages
  • msgs: list of actual messages

Right now, this module only provides a transport for in-app notifications - the application is expected to keep polling the “Get Notifications” API using a timer. However, in future, we will add support for specific templates of notification messages - like,

  • Broadcast
  • Announcements
  • Events/actions defined in the application
  • P2P/Direct messages between users

Example

1. Successful request:

URL Call:

curl "http://api.playblazer.com/v1/app/1/notifications/fb/kunalg?secret_key=cb8d878989b9478e96d1b1574a1bf4ec"

Output:

{
    "status": "ok",
    "notifications": {
        "count": 6,
        "msgs": ["Message 1", "Message 2", "Message 3", "Message 4", "Message 5", "Message 6"]
    }
}

2. Successful request - with no pending messages:

URL Call:

curl "http://api.playblazer.com/v1/app/1/notifications/fb/kunalg?secret_key=cb8d878989b9478e96d1b1574a1bf4ec"

Output:

{
    "status": "ok",
    "notifications": {
        "count": 0,
        "msgs": []
    }
}

3. Successful request - with pagination params:

URL Call:

curl "http://api.playblazer.com/v1/app/1/notifications/fb/kunalg?secret_key=cb8d878989b9478e96d1b1574a1bf4ec&limit=4"

Output:

{
    "status": "ok",
    "notifications": {
        "count": 4,
        "msgs": ["Message 5", "Message 6", "Message 7", "Message 8"]
    }
}

Update 1:

With introduction of custom properties in messages, the “msgs” list now contains structured messages of the form:

{
    "msg": "Message text or serialized structure",
    "badge": <BADGE_NO>,
    "Sound": <SOUND_TO_PLAY>,
    "custom": {
        "prop1": "val1",
        "prop2": "val2",
        "prop3": "val3",
        "prop4": "val4"
    }
}

Update 2:

With introduction of Timer module, a new structured message type is introduced. This message type contains “event” information - along with other regular message attributes (like, msg, badge, sound and custom). The “event” message format looks something like:

{
    "msg": "Message text or serialized structure",
    "badge": <BADGE_NO>,
    "sound": <SOUND_TO_PLAY>,
    "custom": {
        "prop1": "val1",
        "prop2": "val2",
        "prop3": "val3",
        "prop4": "val4"
    },
    "event": {
        "type": "timer",
        "event": {
            "status": "<completed | cancelled>",
            "at_time": <UNIX_TIMESTAMP>,
            "timer_type": "<oneshot | periodic>",
            "timer_id": "<TIMER_ID>"
        },
    }
}

As of now, only timer module generates event notifications. However, in future, other modules may also generate event notifications.

The events generated by the timer module do not propagate through push notifications - they’re only available via in-app notifications.

API: Register Device Token (Push Notifications)

Register device token (push notifications) API

URL: {BASE_URL}/app/<APP_ID>/notifications/<MODE>/<USER_ID>/register

Request Method: HTTP POST

Parameter Mandatory Type Description
APP_ID Yes Alpha-numeric The application ID issued by the Playblazer platform when the app was created
secret_key Yes Alpha-numeric The secret key issued by the Playblazer platform when the app was created
MODE Yes String The mode for user ID interpretation
USER_ID Yes String The user ID registering for push notifications.
os Yes String

The OS type of the device (all lowercase) One of:

  • ios
  • android
device_id Yes Alpha-numeric

The unique device token issued by the notification service - APNS or GCM.

Note APNS issues device token in the format: <44e30fe4 e7df3d88 b4fa54e5 97f6adf7 146aeaf0 ac3856ab 3ddcf3c4 acccd514>

The device ID to be passed to Playblazer should be the value inside the angular brackets with all the spaces in between removed.

fmt No String One of (json | xml) - the format of output

Example

1. Successful request:

URL Call:

curl -X POST \
    -F "secret_key=cb8d878989b9478e96d1b1574a1bf4ec" \
    -F "os=android"  \
    -F "device_id=APA91bFSXYZW2QF9vYbQmu1Y..."
    "http://api.playblazer.com/v1/app/1/notifications/push/fb/kunalg/register"

Output:

{
    "status": "ok"
}

2. Error when device_id is missing from input:

URL Call:

curl -X POST \
    -F "secret_key=cb8d878989b9478e96d1b1574a1bf4ec" \
    -F "os=android"  \
    "http://api.playblazer.com/v1/app/1/notifications/push/fb/kunalg/register"

Output:

{
    "status": "error",
    "error": {
        "message": "'device_id' not passed",
        "code": -50002,
        "code_str": "E_MISSING_DEV_ID"
    }
}

3. Error when ‘os’ is missing from input:

URL Call:

curl -X POST \
    -F "secret_key=cb8d878989b9478e96d1b1574a1bf4ec" \
    -F "device_id=APA91bFSXYZW2QF9vYbQmu1Y..."
    "http://api.playblazer.com/v1/app/1/notifications/push/fb/kunalg/register"

Output:

{
    "status": "error",
    "error": {
        "message": "'os' not passed",
        "code": -50001,
        "code_str": "E_MISSING_OS_TYPE"
    }
}

4. Error when ‘os’ is NOT among the supported values:

URL Call:

curl -X POST \
    -F "secret_key=cb8d878989b9478e96d1b1574a1bf4ec" \
    -F "os=winrt"  \
    -F "device_id=APA91bFSXYZW2QF9vYbQmu1Y..."
    "http://api.playblazer.com/v1/app/1/notifications/push/fb/kunalg/register"

Output:

{
    "status": "error",
    "error": {
        "message": "os=winrt not supported yet",
        "code": -50003,
        "code_str": "E_UNSUPPORTED_OS"
    }
}

API: Unregister Device Token (Push Notifications)

Unregister device token (push notifications) API

URL: {BASE_URL}/app/<APP_ID>/notifications/<MODE>/<USER_ID>/unregister

Request Method: HTTP POST

Parameter Mandatory Type Description
APP_ID Yes Alpha-numeric The application ID issued by the Playblazer platform when the app was created
secret_key Yes Alpha-numeric The secret key issued by the Playblazer platform when the app was created
MODE Yes String The mode for user ID interpretation
USER_ID Yes String The user ID unregistering from push notifications.
os Yes String

The OS type of the device (all lowercase) One of:

  • ios
  • android
fmt No String One of (json | xml) - the format of output

Example

1. Successful request:

URL Call:

curl -X POST \
    -F "secret_key=cb8d878989b9478e96d1b1574a1bf4ec" \
    -F "os=android"  \
    "http://api.playblazer.com/v1/app/1/notifications/push/fb/kunalg/unregister"

Output:

{
    "status": "ok"
}

2. Error when ‘os’ is missing from input:

URL Call:

curl -X POST \
    -F "secret_key=cb8d878989b9478e96d1b1574a1bf4ec" \
    "http://api.playblazer.com/v1/app/1/notifications/push/fb/kunalg/unregister"

Output:

{
    "status": "error",
    "error": {
        "message": "'os' not passed",
        "code": -50001,
        "code_str": "E_MISSING_OS_TYPE"
    }
}

3. Error when ‘os’ is NOT among the supported values:

URL Call:

curl -X POST \
    -F "secret_key=cb8d878989b9478e96d1b1574a1bf4ec" \
    -F "os=winrt"  \
    "http://api.playblazer.com/v1/app/1/notifications/push/fb/kunalg/unregister"

Output:

{
    "status": "error",
    "error": {
        "message": "os=winrt not supported yet",
        "code": -50003,
        "code_str": "E_UNSUPPORTED_OS"
    }
}

API: Post Notification

Post Notification API

URL: {BASE_URL}/app/<APP_ID>/notifications/<MODE>/<USER_ID>/post

Request Method: HTTP POST

Parameter Mandatory Type Description
APP_ID Yes Alpha-numeric The application ID issued by the Playblazer platform when the app was created
secret_key Yes Alpha-numeric The secret key issued by the Playblazer platform when the app was created
MODE Yes String The mode for user ID interpretation
USER_ID Yes String The receiver user ID.
msg Yes String The message that should be posted (URL-encoded).
sound No String The name of sound to use while displaying the push notification (only used with APNS)
badge No String The no. to send to be displayed as “badge” on the app icon. (only used with APNS)
custom:attr1 No Alpha-numeric Set of custom attributes to include
custom:attr2     in the push notification.
custom:attr3      
...      
push No Numeric

Force push notification.

By default, push notification is triggered only when the user is in “offline” state. However, using this param, a push notification can be forcibly triggered without looking at the state of the user.

Possible values:

  • -1 - don’t use push notification at all - even if available and configured (useful for “event” messages that shouldn’t be delivered over push notifications)
  • 0 - use the default policy (as explained above)
  • 1 - force push notification message.
fmt No String One of (json | xml) - the format of output

It is possible for a push notification message to carry custom application specific data (i.e. data that is not related to display properties of the message).

These are specified using the custom:<key>=<value> syntax. These are made available in the received notification message as simply <key>=<value> pairs.

Attention

The different push notification systems (APNS/iOS vs. GCM/Android) support substantially different sizes of payloads. Given that the user can possibly use both the operating systems to use the game/app, there is no general way for us to check the size of the message.

The developer should make sure that the message size (including the custom attributes) doesn’t exceed the lowest common size - which as of now happens to be APNS (256 bytes).

Example

1. Successful request:

URL Call:

curl -X POST \
    -F "secret_key=cb8d878989b9478e96d1b1574a1bf4ec" \
    -F "msg=level_updated"  \
    -F "custom:cur_level=5" \
    -F "custom:new_level=6" \
    "http://api.playblazer.com/v1/app/1/notifications/push/fb/kunalg/post"

Output:

{
    "status": "ok"
}