차근차근
자바 메일 보내기 smpt설정
네이버참조 : http://oskardevelopers.blogspot.kr/2016/10/java-library-javamail-api.html 1 .네이버 로그인 2. 메일에 환경설정 들어간다. 3.환경설정 -> POP/IMAP 클릭 4.IMAP/SMTP 설정 탭에서 IMAP/SMPT 사용함으로 변경 구글 1. 구글 로그인 2 .구글 메일 환경설정 들어간다. 3. 환경설정 -> 전달 및 POP/IMAP 탭 클릭 4. IMAP 액세스에서 -> IMAP 사용 설정 5.https://www.google.com/settings/security/lesssecureapps 접속해서 보안수준이 낮은 앱에 접근성을 허용으로 변경
개발
2018. 2. 6. 17:04
스프링 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); ..
개발
2018. 2. 1. 18:47