분류 전체보기 (58) 썸네일형 리스트형 카카오 '톡캘린더' REST API 사용법 _ 일반 일정 > 생성하기 먼저, 로그인 과정을 진행해준다.https://doraemin.tistory.com/17 제품 설정 > 카카오 로그인 "활성화"하기활성화 설정 ONRedirect URI 설정 ex) https://localhost.com크롬(시크릿모드)에서 '카" data-og-host="doraemin.tistory.com" data-og-source-url="https://doraemin.tistory.com/17" data-og-url="https://doraemin.tistory.com/17" data-og-image="https://scrap.kakaocdn.net/dn/wNvL3/hyWV4cZh79/LlDPdo3H8xMw30JmSs3JL0/img.png?width=800&height=659&face=0_0_8.. 카카오 톡캘린더 API 가져오기 _ 추가 항목 동의 에러 { "msg": "insufficient scopes.", "code": -402, "api_type": "CALENDAR_GET_CALENDARS", "required_scopes": [ "talk_calendar" ], "allowed_scopes": []} 앞서 로그인 한 후에, 접근 권한을 수정해주었기 때문에 (https://doraemin.tistory.com/18) 사용자가 동의하지 않은 동의항목에 대한 추가 동의를 요청해줘야 한다.참고 : https://developers.kakao.com/docs/latest/ko/kakaologin/rest-api#request-code-additional-consent Kakao Developers카카오 A.. 카카오 톡캘린더 API 가져오기 _ 접근 권환 동의 에러 { "msg": "[JejuTravel] App disabled [talk_calendar] scopes for [CALENDAR_GET_CALENDARS] API on developers.kakao.com. Enable it first.", "code": -3} 접근 권한 에러인 것이다. 내 애플리케이션 > 제품 설정 > 카카오 로그인 > 동의항목들어가서, 아래쪽의 '접근 권환' '설정'을 '사용 안 함' 에서 '이용 중 동의'로 변경해주자. 이후, 추가 항목 동의를 시행해주어야 한다. 다시 로그인 과정을 거쳐야 한다.자세한 내용은 아래 글 참고.https://doraemin.tistory.com/19 카카오 톡캘린더 API 가져오기 _ 추가 항목 동의 에러{ "msg": "insuff.. 카카오 API 사용법 _ 로그인 토근 발급 받기 https://developers.kakao.com/console/app 에서 애플리케이션 추가하기내 애플리케이션 > 제품 설정 > 카카오 로그인 "활성화"하기활성화 설정 ONRedirect URI 설정 ex) https://localhost.com크롬(시크릿모드)에서 '카카오톡 로그인 인가' 받기 위한 url 입력 https://kauth.kakao.com/oauth/authorize?client_id={ 앱 REST API 키 }&redirect_uri={ 앞서 작성한, Redirect URI }&response_type=code 카카오 공식 문서 참고 : https://developers.kakao.com/docs/latest/ko/kakaologin/rest-api#request-code '.. ./gradlew build 에러 해결(?) - 팀 프로젝트로 (다른 친구가 이미 만들었으면) 필요 없다. MK@KM MINGW64 ~/Documents/MJU/관광데이터 공모전/Github/JejuTravel-BE (min)$ ./gradlew build> Task :test FAILEDFAILURE: Build failed with an exception.* What went wrong:Execution failed for task ':test'.> There were failing tests. See the report at: file:///C:/Users/LG/Documents/MJU/%EA%B4%80%EA%B4%91%EB%8D%B0%EC%9D%B4%ED%84%B0%20%EA%B3%B5%EB%AA%A8%EC%A0%84/Github/JejuTravel-BE/build/reports/tests/test/i.. 실행 에러, You don't have an extension for debugging 'Spring Boot Properties'. You don't have an extension for debugging 'Spring Boot Properties'. Should we find a 'Spring Boot Properties' extension in the Marketplace?application.properties에서 실행했기 때문에 뜨는 에러다.그냥 다른 ~~.java 화면에서 실행하면 정상적으로 실행이 잘 된다. JSON Object를 JAVA에서 사용하기. Gradle 설정 변경 방법. https://mvnrepository.com/artifact/org.json/jsonUsage가 많은 것 중 하나를 골라서, Version을 선택해서 들어간다. Gradle탭을 클릭하고 내용을 복사 한 후 build.gradle의 dependencies에 복사한 내용을 붙여준다.// https://mvnrepository.com/artifact/org.json/jsonimplementation group: 'org.json', name: 'json', version: '20160810'dependencies { // Spring Boot ... // Lombok ... ... ... // https://mvnrepository.com/artifact/org.json/json.. ./gradlew build 명령을 실행할 때, 테스트 실패 $ ./gradlew build> Task :test FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':test'. > There were failing tests. See the report at: file:///C:/Users/LG/Documents/MJU/%EA%B3%B5%EB%AA%A8%EC%A0%84/Github/JejuTravel-BE/build/reports/tests/test/index.html * Try: > Run with --scan to get full insights. BUILD FAILED in 20s 7 actionable tasks: 7 executed ./.. 이전 1 ··· 3 4 5 6 7 8 다음