• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 我们如何在 iOS Appcelerator 中获取设备 token

[复制链接]
菜鸟教程小白 发表于 2022-12-12 18:25:00 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在使用 Appcelerator Studio。

我想从 iPhone 获取 device token。我正在关注 Appcelerator 文档,但是当应用程序安装时,它会向我显示警报“你想收到通知吗”,并且单击它后,控制台中不会打印任何内容。

这是我的代码:

var self = Titanium.UI.createWindow({
    backgroundColor : '#146FA6',
    title : 'Menu',
});
var deviceToken = null;
// Check if the device is running iOS 8 or later
if (Ti.Platform.name == "iPhone OS" && parseInt(Ti.Platform.version.split(".")[0]) >= 8) {

    // 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 : function(e) {
                var deviceToken = e.deviceToken;
                alert(e.deviceToken);
                Ti.API.info("ush notification device token is: " + deviceToken);
                Ti.API.info("ush notification types: " + Titanium.Network.remoteNotificationTypes);
                Ti.API.info("ush notification enabled: " + Titanium.Network.remoteNotificationsEnabled);
            },
            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 : function(e) {
            var deviceToken = e.deviceToken;
            alert(deviceToken);
            Ti.API.info("ush notification device token is: " + deviceToken);
            Ti.API.info("ush notification types: " + Titanium.Network.remoteNotificationTypes);
            Ti.API.info("ush notification enabled: " + Titanium.Network.remoteNotificationsEnabled);
        },
        error : deviceTokenError,
        callback : receivePush
    });
}
//deviceTokenSuccess();
// Process incoming push notifications
function receivePush(e) {
    alert('Received push: ' + JSON.stringify(e));
}

function deviceTokenError(e) {
    alert('Failed to register for push notifications! ' + e.error);
}

self.open();



Best Answer-推荐答案


如果启用 LiveView,请将其禁用。

在使用 LiveView 和推送通知服务时存在一些已知的冲突

要使用 Titanium Studio 禁用 LiveView 功能,请查看 Appcelerator Studio 工具栏,像这样

enter image description here

然后取消选择第一项。

关于ios - 我们如何在 iOS Appcelerator 中获取设备 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35146158/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap