문의 시, 디벨로퍼스 앱ID를 알려주세요.
톡캘린더에 일반 일정을 생성할려고 합니다.
https://developers.kakao.com/docs/latest/ko/talkcalendar/rest-api#common-event-create
url = "https://kapi.kakao.com/v2/api/calendar/create/event"
headers = {
"Authorization": "Bearer "
}
body = {
"event": {
"title": "title",
"time": {
"start_at": "2023-8-2T03:00:00Z",
"end_at": "2023-8-2T06:00:00Z",
"time_zone": "Asia/Seoul",
"all_day": False,
"lunar": False
},
"rrlue": "FREQ=DAILY;UNTIL=20221031T000000Z",
"description": "일정 설명",
"location": {
"name": "카카오",
"location_id": 18577297,
"address": "경기 성남시 분당구 판교역로 166",
"latitude": 37.39570088983171,
"longitude": 127.1104335101161
},
"reminders": [15, 30],
"color": "RED"
}
}
response = requests.post(url=url, headers=headers, data=body).json()
print(response)
실행시
{'msg': 'failed to parse parameter. name=event, stringToParse=title, paramString=title, paramStringAlias=null', 'code': -2}
다음과 같은 오류가 발생합니다…