0
我正在使用Appcelerator開發iOS應用程序。在這個應用程序中,我想使用推送通知。 在我的app.js中,我添加了下面的代碼,但是當我在手機上運行它時,它甚至沒有註冊該應用程序想要使用推送。無法在Appcelerator上註冊推送通知
我正在使用Titanium的SDK 1.8。奇怪的是,我的其他應用程序上的較低SDK上的代碼完全相同,代碼爲 。
// Set the Urban Airship credentials
var APP_KEY = 'XXXXX';
// Set the Urban Airship credentials
var APP_SECRET = 'XXXXX';
// Start the register function
Titanium.Network.registerForPushNotifications({
// Set the push types
types:[
Titanium.Network.NOTIFICATION_TYPE_BADGE,
Titanium.Network.NOTIFICATION_TYPE_ALERT,
Titanium.Network.NOTIFICATION_TYPE_SOUND
],
// If the call was successful
success: successCallback,
// If the call resulted in an error
error: errorCallback,
// The message callback
callback: messageCallback
});
function successCallback(e) {
// Setup the XHR client
var request = Titanium.Network.createHTTPClient({
// Setup the onload
onload:function(e) {
if (request.status != 200 && request.status != 201) {
// Set the response
request.onerror(e);
// Return
return;
}
},
// Set up the error
onerror:function(e) {
Ti.API.info("Register with Urban Airship Push Service failed. Error: "+ e.error);
}
});
// Set the device token
Titanium.App.Properties.setString("device_token", e.deviceToken);
// Register device token with UA
request.open('PUT', 'https://go.urbanairship.com/api/device_tokens/'+ e.deviceToken, true);
// Set the basic authentication
request.setRequestHeader('Authorization','Basic ' + Titanium.Utils.base64encode(APP_KEY + ':' + APP_SECRET));
// Send the request
request.send();
}