ตอนที่ 9 : การทำ Push Notifications in Mobile Services ด้วย Windows Phone
ตอนที่ 9 : การทำ Push Notifications in Mobile Services ด้วย Windows Phone การทำ Push Notification เป็นความสามารถหนึ่งของ Mobile Services ในการ Push Alert แจ้งไปยังเครื่อง Windows Phone Client ที่ติดตั้ง App ที่เราเขียนขึ้น และถ้าเราใช้ Windows Phone กับ Mobile Services สามารถใช้บริการของ Microsoft Push Notification Service (MPNS) ซึ่งเป็นบริการของ Microsoft ที่ทำงานร่วมกับ Windows Phone อยู่แล้ว ซึ่งสามารถที่จะสร้าง App เพื่อทำการ Push Notification ไปยัง Windows Phone Client ได้อย่างง่ายดาย
กลับมายังหน้า Mobile Services Portal Management บน Windows Azure
คลิกที่ DATA เลือก Table ของเราที่ได้สร้างไว้
ในส่วนของ Insert ให้เพิ่ม คสั่งนี้เข้าไป
function insert(item, user, request) {
request.execute({
success: function () {
// Write to the response and then send the notification in the background
request.respond();
push.mpns.sendFlipTile(item.channel, {
title: item.text
}, {
success: function (pushResponse) {
console.log("Sent push:", pushResponse);
}
});
}
});
}
คำสั่งสำหรับ Push Notification บน Mobile Serveries
ทดสอบการทำงาน
ทำการรันโปรแกรม จากนั้นในหน้าแรกบน Windows Phone ให้ทำการ Pin to Start ใน App ของเรา