전체 글
-
ios - fcm 메세지 전송시 400 erroriOS 2020. 12. 30. 11:08
fcm 서버 구축 -> spring boot controller에서 message 전송시 에러 발생 java.io.IOException: Server returned HTTP response code: 400 for URL: https://fcm.googleapis.com/v1/projects/crewgym-e735d/messages:send @PostMapping("/fcm/sendMessage") @ResponseBody public Result fcmTest(String deviceToken, String title, String content) { //log.info("tokenId:" + param.getToken() + " / title:" + param.getTitle() + " / " + ..
-
iOS - push 기능 설정iOS 2020. 12. 23. 11:36
1. 개발자 계정 등록 ( 월 10만원..) 2. 키발급 3. xcode에서 설정 4. fcm (firebase) 설정 spring boot 를 FCM 서버로 만들기 galid1.tistory.com/740 Spring Boot - FCM Push 서버 구축하기 test 이번 포스팅에서는, Spring boot와 firebase의 FCM을 이용해, PushNotifiaction Server 구축을 해보도록 하겠습니다. Front는 구현이 되어있다고 가정하고, backend만을 구축하겠습니다. Push Notification을.. galid1.tistory.com
-
ReactJS - #3 기초 및 실습 (2주차)React 2020. 12. 20. 17:58
ReactJS - #3 기초 및 실습 (2주차) scss 스타일 설정 .scss 로 확장자명을 변경해서 실행해보면 정상적으로 실행되지 않는다.. 그래서 scss 파일을 읽어 사용하기 위해서는 특정 모듈을 설치해주어야 한다. @zeit/next-css , @zeit/next-scss, node-scss를 만들고 모듈 세팅을 해주어야 한다. jaeho@jaehoiui-MacBookPro my-app % sudo npm install --save@zeit/next-sass node-sass jaeho@jaehoiui-MacBookPro my-app % sudo npm install --save @zeit/next-css [next.config.js] 파일 생성 후 그 안에 밑에 코드 그럼 package.jso..
-
ReactJS - #2 기초 및 실습 (2주차)카테고리 없음 2020. 12. 20. 17:56
ReactJS - #2 기초 및 실습 (2주차) Style-components styled-components.com/ styled-components Visual primitives for the component age. Use the best bits of ES6 and CSS to style your apps without stress 💅🏾 styled-components.com 아래 코드처럼 Component를 만들 때 스타일을 줘서 만들 수도 있고 props의 상태에 따라서 스타일을 다르게 줄 수도 있음 const Button = styled.a => 여기서 a는 태그이름 Basics -> Getting Started 요기 방식대로 한번 해보자 처음엔 document를 그대로 붙여넣었는데 실행..
-
ReactJS - #1 기초 및 실습 (2주차)React 2020. 12. 17. 18:23
#1 기초 및 실습 (2주차) nextjs.org/docs/basic-features/pages Basic Features: Pages | Next.js Next.js pages are React Components exported in a file in the pages directory. Learn how they work here. nextjs.org next.js는 기본적으로 page routing 방식을 밑에 형식과 같이 지원해준다. next.js에서 자체적으로 지원해주는 Link와 Router 기능 위 코드와 같이 import 를 한 후 요런 식으로 써주게 되면 'pages/class.js' 로 자동으로 routing된다 페이지 이동이 좀 자유로운 장점이 있다. 이런식으로도 쿼리스트링으로도 넘..