차근차근
스프링 FCM 푸시 보내기 본문
if(prm.containsKey("title")){
System.out.println();
String authKey = "";
String FMCurl = "https://fcm.googleapis.com/fcm/send";
String title = prm.get("title");
String content = prm.get("content");
String user = null;
if(prm.containsKey("user")){
user= prm.get("user");
}
try {
URL url = new URL(FMCurl);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setUseCaches(false);
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Authorization", "key=" + authKey);
conn.setRequestProperty("Content-Type", "application/json");
String input = "{\"notification\" : {\"title\" : \""+title+" \", \"body\" : \""+content+"\"}, \"to\":\"/topics/ALL\"}";
if(prm.containsKey("user")){
input = "{\"notification\" : {\"title\" : \" "+title+" \", \"body\" : \""+content+"\"}, \"to\":\""+user+"\"}";
}
OutputStream os = conn.getOutputStream();
os.write(input.getBytes("UTF-8"));
os.flush();
os.close();
int responseCode = conn.getResponseCode();
System.out.println("\nSending 'POST' request to URL : " + url);
System.out.println("Post parameters : " + input);
System.out.println("Response Code : " + responseCode);
BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while((inputLine = in.readLine())!=null){
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
키 위치
파이어베이스 프로젝트 설정 ->일반 옆 클라우드 메세징 클릭 -> 서버키를 복사후 authKey 붙여 넣는다.
'개발' 카테고리의 다른 글
자바 메일 보내기 smpt설정 (0) | 2018.02.06 |
---|---|
mysql 문자형 숫자 order by 하는법 (0) | 2018.02.06 |
자바스크립트 하루종일 팝업 (0) | 2018.01.25 |
안드로이드 푸시 알람 설정 (0) | 2018.01.25 |
안드로이드 웹뷰 쿠키 문제 (0) | 2018.01.24 |