Steps to Integrate Push Notification with Unity3d on iOS

Steps to Integrate Push Notification with Unity3d on iOS

Implementing Push Notifications in Unity Apps/games for iOS is an easy task and will explain the process of doing this through a sample unity demo App. The source code can be downloaded or viewed from our GitHub Repo .push with unity ios Steps to Integrate Push Notification with Unity3d on iOS

To configure Push Notifications for iOS Apps/games; the prerequisites are:

  • Create a new App ID and provisioning profile for each App that uses push, as well as a SSL certificate for the server. To do this you should have  an iOS Developer Program membership on iOS Dev Center .
  • Create .p12 file from the SSL certificate which was downloaded in the above step from the iOS Dev Center.
  • A Server and this is where App42 Push Service comes into the picture.

Note:  If you are new to Push Notifications for iOS or App42 , you can go through my previous blog  first.

Now let’s understand how the sample code implements the Push Notifications by examining the key code snippets. Open the folder which you downloaded and go to assets folder and double click PushSample.unity file to open the sample.

To implement Push just drag and drop our “App42PushHandlerInternal.h/.m” classes to “Assets/Plugins/iOS” folder and “PushScript.cs”  C# script to “Assets” folder. Assign PushScript.cs to a game object; in the demo it was assigned to the Main Camera. So, let’s browse through the PushScript.cs code.

To receive push notifications, the iOS needs to be notified that your App wants to receive push notifications, and “App42PushHandlerInternal.m”  class does it by default .

In the PushScript, all the required callbacks are defined and to get it called, set a listener game object as:

1
2
3
4
5
// Use this for initialization
void Start ()
{
setListenerGameObject(this.gameObject.name);
}

As “App42PushHandlerInternal.m” sends a request to register this device for push notification service; the device token is received from Apple Push Service on the successful response. It is available via “onDidRegisterForRemoteNotificationsWithDeviceToken” call back of PushScript.cs.

1
2
3
4
5
6
7
8
//Sent when the application successfully registered with Apple Push Notification Service (APNS).
void onDidRegisterForRemoteNotificationsWithDeviceToken(string deviceToken)
{
if (deviceToken != null && deviceToken.Length!=0)
{
//registerDeviceTokenToApp42PushNotificationService(deviceToken,"User Name");
}
}

Now you need to register this device to App42 Push Notification Service to start sending/receiving push notifications. To do that, just call “registerDeviceTokenToApp42PushNotificationService” method of PushScript.cs from the above call back.

1
2
3
4
5
6
7
//Registers a user with the given device token to APP42 push notification service
void registerDeviceTokenToApp42PushNotificationService(string devToken,string userName)
{
ServiceAPI serviceAPI = new ServiceAPI(api_key,secret_key);
PushNotificationService pushService = serviceAPI.BuildPushNotificationService();
pushService.StoreDeviceToken(userName,devToken,"iOS");
}

The SendPushToUser method of this script that can be written/called wherever it’s required to send a request to App42 server to send a Push Notification to a specific user.

1
2
3
4
5
6
7
//Sends push to a given user
void SendPushToUser(string userName,string message)
{
ServiceAPI serviceAPI = new ServiceAPI(api_key,secret_key);
PushNotificationService pushService = serviceAPI.BuildPushNotificationService();
pushService.SendPushMessageToUser(userName,message);
}

The “onPushNotificationsReceived” call back of the PushScript will be called when you receive a push notification.

1
2
3
4
5
6
7
//Sent when the application Receives a push notification
void onPushNotificationsReceived(string pushMessageString)
{
Console.WriteLine("onPushNotificationsReceived");
//dump you code here to handle the pushMessageString
Debug.Log(pushMessageString);
}

Now your App has been successfully set up to receive/send push notifications through our App42 Server using App42 Push Notification Service .

If you have any questions or need any further assistance to integrate this in your App, please feel free to write us at [email protected]

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章