|
|
(13 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| The Pushwoosh API lets you send notifications from your computer to your app running on the device. While your app is running, if a notification is received, a function in your app will be called with the contents of the notification. It can then take whatever action needed based on the incoming data.
| | Both PushWoosh and Google have changed their interfaces. See the following docs: |
| | |
| == How to send and receive a message ==
| |
| | |
| Let's send a simple message to a device. We're assuming everything is set up already. We will cover how to set things up later.
| |
| | |
| In Pushwoosh, we can compose and send a notification to our app. There are other ways to send notifications: this is the easiest.
| |
| | |
| [[File:Pushwoosh2.png]]
| |
| | |
| On the device, we already have our Pushwoosh app running. It is written in AppStudio. A moment or two after we sent the message, this appears:
| |
| | |
| [[File:Pushwhoosh1.png]]
| |
| | |
| == Setting up Notifications ==
| |
| | |
| === Set up a Pushwoosh account ===
| |
| | |
| For testing, all you need is a free account. It lets you send notifications for up to 5 apps on 1 million devices.
| |
| http://www.pushwoosh.com/pricing/
| |
| | |
| === Set up your application ===
| |
| | |
| You need to set up each AppStudio app in Pushwoosh:
| |
| https://cp.pushwoosh.com/applications
| |
| | |
| * Set Title to the name of your app.
| |
| * Select your icon. Any size seems to work - the bigger the better
| |
| * Under Android SDK, select Appresser to set the format of the data being sent.
| |
| | |
| [[File:Pushwoosh3.png]]
| |
| | |
| === Get Google Cloud Application ID ===
| |
| | |
| Pushwoosh has good instructions for this step here:
| |
| http://www.pushwoosh.com/programming-push-notification/android/android-gcm-api-configuration/
| |
| | |
| The end result will be to get an API Key, a number which looks like 938103699235. This will be used later as your projected in your AppStudio program.
| |
| | |
| The platform settings give specific configuration information for the platform. Choose your project from "Applications", then click on the Android "configure" tab. You will get this:
| |
| | |
| [[File:Pushwoosh4.png]]
| |
| | |
| === Get the appid ===
| |
| | |
| The appid appears on the list of applications. You'll need this number for your AppStudio program.
| |
| | |
| [[File:Pushwoosh5.png]]
| |
| | |
| | |
| | |
|
| |
|
| | http://docs.pushwoosh.com/docs/phonegap-build |
|
| |
|
| | http://docs.pushwoosh.com/docs/fcm-configuration |
|
| |
|
| | https://www.joshmorony.com/setting-up-the-pushwoosh-plugin-with-phonegap-build/ |
|
| |
|
| | == Introduction == |
|
| |
|
| | The Pushwoosh API lets you send notifications from your computer to your app running on the device. While your app is running, if a notification is received, a function in your app will be called with the contents of the notification. It can then take whatever action needed based on the incoming data. |
|
| |
|
| == Creating an AppStudio App ==
| | Notifications are a way to send and receive messages from your device. They have the ability to be broadcast to large numbers of devices. For Android, [http://en.wikipedia.org/wiki/Google_Cloud_Messaging Google Cloud Messaging] is used. For iOS, it uses the [http://en.wikipedia.org/wiki/Apple_Push_Notification_Service Apple Push Notification Service]. |
Latest revision as of 14:19, 2 December 2024
Both PushWoosh and Google have changed their interfaces. See the following docs:
http://docs.pushwoosh.com/docs/phonegap-build
http://docs.pushwoosh.com/docs/fcm-configuration
https://www.joshmorony.com/setting-up-the-pushwoosh-plugin-with-phonegap-build/
Introduction
The Pushwoosh API lets you send notifications from your computer to your app running on the device. While your app is running, if a notification is received, a function in your app will be called with the contents of the notification. It can then take whatever action needed based on the incoming data.
Notifications are a way to send and receive messages from your device. They have the ability to be broadcast to large numbers of devices. For Android, Google Cloud Messaging is used. For iOS, it uses the Apple Push Notification Service.