본문 바로가기

웹 개발

카카오 '톡캘린더' REST API 사용법 _ 일반 일정 > 삭제하기

먼저, 로그인 과정을 진행해준다.
https://doraemin.tistory.com/17

 

카카오 API 사용법 _ 로그인 토근 발급 받기

https://developers.kakao.com/console/app 에서 애플리케이션 추가하기내 애플리케이션 > 제품 설정 > 카카오 로그인 "활성화"하기활성화 설정 ONRedirect URI 설정 ex) https://localhost.com크롬(시크릿모드)에서 '카

doraemin.tistory.com

 

로그인 후 받은 Access Tocken 값을 잘 가지고 있자.

 

일정을 만든 적이 없다면, 일정을 만들어주자. 아래 글 참고.
https://doraemin.tistory.com/20

 

카카오 '톡캘린더' REST API 사용법 _ 일반 일정 > 생성하기

먼저, 로그인 과정을 진행해준다.https://doraemin.tistory.com/17 제품 설정 > 카카오 로그인 "활성화"하기활성화 설정 ONRedirect URI 설정 ex) https://localhost.com크롬(시크릿모드)에서 '카" data-og-host="doraemin.tist

doraemin.tistory.com

 

 

일정이 등록되어 있다면,
이제, 톡캘린더 '삭제하기' 
공식 문서 참조 : https://developers.kakao.com/docs/latest/ko/talkcalendar/rest-api#common-event-delete

 

DELETE로 url을 입력해주고  https://kapi.kakao.com/v2/api/calendar/delete/event

Headers에

Key는 Authorization

Value는 Bearer 뒤에 앞서 로그인 후 받은 Access Tocken 값을 기입.

Params에는

Key는 event_id

Value는 삭제할 일정의 ID를 입력해 준다.

일정 삭제

응답으로 삭제한 일정 ID을 확인할 수 있다.

( 반복 일정이 아닌 경우 필수. 반복 일정의 경우 아무것도 뜨지 않는다.)


참고로, 반복 일정의 경우, 정확한 (상세) event_id 를 입력해줘야한다.

recur_update_type이 THIS_AND_FOLLOWING일 경우, 해당 일정 이후에 묶여있는 반복 일정들이 삭제된다.

 

ex) 27, 28, 29일 3일이 묶여 있는 반복 일정 이라면,

event_id=28일 일정 ID로

recur_update_type=THIS_AND_FOLLOWING을 입력해주면

28일과 29일 일정만 삭제된다.


정확한 상세 event_id를 얻는 경로는, 아래의 글 하단 부분에 자세히 적어두었다.
https://doraemin.tistory.com/22

 

카카오 '톡캘린더' REST API 사용법 _ 일반 일정 > 상세 조회하기

먼저, 로그인 과정을 진행해준다.https://doraemin.tistory.com/17 제품 설정 > 카카오 로그인 "활성화"하기활성화 설정 ONRedirect URI 설정 ex) https://localhost.com크롬(시크릿모드)에서 '카" data-og-host="doraemin.tist

doraemin.tistory.com