'C2DM'에 해당되는 글 1건

  1. 2011.04.04 Push Notification, APNS, C2DM


# APNS

APNS - Local and Push Notification Programming Guide

APNS
The Notification Payload
json format 256 byte maximum
'aps' namespace
  An alert message to display to the user
  A number to badge the application icon with
  A sound to play
custom payload

# Apple 관련 ID
Apple ID: Apple App Store 계정
Bundle ID: ex) com.kt.m2m.smartcar
UDID (Unique Device Identifier) : 디바이스 식별 ID (디바이스 SN과 관련, SIM과는 무관) [a-f0-9] * 40 character
DeviceToken (APNS) : App이 디바이스에 인스톨 될 때 APNS로부터 받음. Push Notification에 사용. 32 bytes

# C2DM

Android Cloud to Device Messaging Framework

Android C2DM - sg90841님 블로그
http://blog.naver.com/PostView.nhn?blogId=sg90841&logNo=120119879166

# Google 관련 ID
Sender ID : Android Application을 구분하기 위한 개발자의 이메일
Application ID : ex) com.kt.m2m.smartcar
Registration ID : C2DM서버가 Android application에게 발급해주는 ID. Thrid-party 서버가 C2DM을 통해 메세지를 보낼때 디바이스(device+application)를 식별하는데 사용.
Sender Auth Token : Thrid-party 서버가 Google 서비스에 접근할 때 사용하는 인증키.
 
Posted by 天下太平
,