1

有人有使用 Cordova 1.7 的 Urban Airship 的示例/插件/资源吗?

我遇到的所有示例和插件都很旧。

非常感谢!

4

2 回答 2

3

我们使用https://github.com/phonegap/phonegap-plugins/tree/master/iOS/PushNotification

然后您需要将设备令牌发送到 UA - 我们使用这两个函数来执行此操作 - 在第一个中设置您的 app_key 和 secret。然后从某个地方调用它..

    function registerDevice(callback) {
        console.log("calling registerDevice");
        window.plugins.pushNotification.registerDevice({alert:true, badge:true, sound:true},function(status) {
                if (status.deviceToken) {
                    window.token = status.deviceToken;
                    if (status) {
                        registerUAPush(token, "https://go.urbanairship.com/", "YOUR_APP_KEY", "YOUR_APP_SECRET", callback);
                    } else {
                        callback(false);
                        alert("error?");
                    }
                }
        });
    }

调用

function registerUAPush(deviceToken, host, appKey, appSecret, callback) {

        console.log('Registering with Urban Airship Push Service...');

        var request = new XMLHttpRequest();

        // open the client and encode our URL
        request.open('PUT', host+'api/device_tokens/'+deviceToken, true, appKey, appSecret);

        // callback when request finished
        request.onload = function() {
            console.log('Status: ' + this.status + '<br>');

            if(this.status == 200 || this.status == 201) {
                // register UA push success
                console.log('UA push service successfully registered.');
            } else {
              // error
                console.log('Error when registering UA push service.<br>error: '+this.statusText);
            }

            callback(this.status == 200 || this.status == 201);

        };

        request.send();
    }
于 2012-06-09T07:15:45.523 回答
3

urbanairship 在这里发布了 android/ios 的库和示例:https ://github.com/urbanairship/phonegap-ua-push

于 2012-08-20T18:55:47.557 回答