一步一步教你使用unity制作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 myprevious 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 

If you have any questions or need any further assistance to integrate this in your App, please feel free to write us at support@shephertz.com

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值