[Android] [C2DM] Web java source
public static void androidPush(String regId, String authtoken, String msg) throws Exception { try{ StringBuffer postDataBuilder = new StringBuffer(); postDataBuilder.append("registration_id=" + regId); // 등록ID postDataBuilder.append("&collapse_key=1"); postDataBuilder.append("&delay_while_idle=1"); postDataBuilder.append("&data.msg=" + URLEncoder.encode(msg, "UTF-8")); // 내용 byte[] postData = po..