Как я могу получить phonegap-plugin-push senderID
Я пытался смотреть в Интернете, но ни один из них, кажется, не работает, может быть, Google обновил что-то.
https://console.developers.google.com
создали новый проект здесь.
после того, как я вошел в приборную панель.
Я вижу сообщение: API или сервисы не включены.
Может кто-нибудь, пожалуйста, руководство.
это мой код, где я пытаюсь заменить свой идентификатор отправителя
console.log('calling push init');
var push = PushNotification.init({
"android": {
"senderID": "XXXXXXXX"},
"browser": {},
"ios": {
"sound": true,
"vibration": true,
"badge": true
},
"windows": {}
});
console.log('after init');
push.on('registration', function(data) {
console.log('registration event: ' + data.registrationId);
var oldRegId = localStorage.getItem('registrationId');
if (oldRegId !== data.registrationId) {
// Save new registration ID
localStorage.setItem('registrationId', data.registrationId);
// Post registrationId to your app server as the value has changed
}
var parentElement = document.getElementById('registration');
var listeningElement = parentElement.querySelector('.waiting');
var receivedElement = parentElement.querySelector('.received');
listeningElement.setAttribute('style', 'display:none;');
receivedElement.setAttribute('style', 'display:block;');
});
push.on('error', function(e) {
console.log("push error = " + e.message);
});
push.on('notification', function(data) {
console.log('notification event');
navigator.notification.alert(
data.message, // message
null, // callback
data.title, // title
'Ok' // buttonName
);
});
Заранее спасибо .
Задача ещё не решена.
Других решений пока нет …