appcelerator上的IOS推送通知问题

时间:2016-01-25 13:52:59

标签: apple-push-notifications appcelerator appcelerator-titanium

我的IOS应用程序存在很大问题。我按照appcelerator文档提供的指南来设置我的iOS推送通知。一切似乎工作正常,在我的appcelerator仪表板上,我在设备部分看到我的设备注册了它的令牌,当我发送推送通知详细推送时(在推送通知日志中)我读了我的id设备号码完美的成功(1)。

但在我的设备上,我没有收到任何通知。我尝试打开我的应用程序并关闭我的应用程序,但没有显示任何内容。我不知道为什么会这样。在我的机器人上工作正常。这是我的代码:

//PUSH NOTIFICATION
var Cloud = require("ti.cloud");
//controllo se ho un token
var deviceToken = Ti.App.Properties.getString("deviceToken");

if ( deviceToken == "" || deviceToken == null) {
    requireToken();
} else {

    if ( Ti.App.Properties.getString("subscribed") !== "true" ) {
        subscribeToChannel(deviceToken);
    }

}

//chiedo un token
function requireToken() {

    // Check if the device is running iOS 8 or later
    if (Ti.Platform.name == "iPhone OS" && parseInt(Ti.Platform.version.split(".")[0]) >= 8) {
     Ti.API.warn( "entrato nella versione" )
        // Wait for user settings to be registered before registering for push notifications
        Ti.App.iOS.addEventListener('usernotificationsettings', function registerForPush() {

            // Remove event listener once registered for push notifications
            Ti.App.iOS.removeEventListener('usernotificationsettings', registerForPush); 

            Ti.Network.registerForPushNotifications({
                success: deviceTokenSuccess,
                error: deviceTokenError,
                callback: receivePush
            });
        });

        // Register notification types to use
        Ti.App.iOS.registerUserNotificationSettings({
            types: [
                Ti.App.iOS.USER_NOTIFICATION_TYPE_ALERT,
                Ti.App.iOS.USER_NOTIFICATION_TYPE_SOUND,
                Ti.App.iOS.USER_NOTIFICATION_TYPE_BADGE
            ]
        });

    }

    // For iOS 7 and earlier
    else {

        Ti.Network.registerForPushNotifications({
            // Specifies which notifications to receive
            types: [
                Ti.Network.NOTIFICATION_TYPE_BADGE,
                Ti.Network.NOTIFICATION_TYPE_ALERT,
                Ti.Network.NOTIFICATION_TYPE_SOUND
            ],
            success: deviceTokenSuccess,
            error: deviceTokenError,
            callback: receivePush
        });

    }

    function deviceTokenSuccess(e) {
        Ti.API.warn( "token ricevuto" )
            Ti.App.Properties.setString("deviceToken", e.deviceToken);
        subscribeToChannel(e.deviceToken);
    }
    function deviceTokenError(e) {
       //error action
    }

}

//controllo se sono iscritto alle notifiche push
if ( Ti.App.Properties.getString("subscribed") !== "true" ) {
    subscribeToChannel(deviceToken);
}


function subscribeToChannel (_deviceToken) {
        Ti.API.warn( "subscribe fatta" )
    Cloud.PushNotifications.subscribeToken({
        device_token: _deviceToken,
        channel: "ios_alerts",
        type: Ti.Platform.name == 'android' ? 'android' : 'ios'
    }, function (e) {
        if (e.success) {
                Ti.App.Properties.setString("subscribed", "true");
        }
    });

};

function receivePush(e) {
    Ti.API.warn("alert ricevuto" + JSON.stringify(e) )
    alert(e)
}

2 个答案:

答案 0 :(得分:0)

可能与Apple面板上的证书相关。 检查您是否使用appid启用了APS,如果没有,请激活它,然后生成其他配置文件并重新构建应用程序。 您还必须在Appcelerator平台网站上放置一个.p12文件。

答案 1 :(得分:0)

以防这是你的问题:

  1. 设备令牌如果在处于调试模式的设备上,则无法获取设备令牌,必须处于运行模式!
  2. 请记住,在ad-hock发布下,推送通知必须使用沙箱'gateway.sandbox.push.apple.com'
  3. 克里斯

    参考:https://archive.appcelerator.com/question/148135/no-reply-from-tinetworkregisterforpushnotifications