참고 사이트
developers.kakao.com/docs/latest/ko/message/rest-api#send-friend
해당 코드는 친구에게 단순한 TEXT 메시지를 보내는 코드이다.
def sendToMeMessage():
header = {"Authorization": 'Bearer ' + Access_Token}
url = "https://kapi.kakao.com/v1/api/talk/friends/message/default/send" #api 주소
uuid = ["친구의 UUID"]
uuidsData = {"receiver_uuids" : json.dumps(uuid)}
post = {
"object_type": "text",
"text" : "보내고자 하는 TEXT",
"link" : {
"web_url" : "http://naver.com",
"mobile_web_url" : "http://naver.com"
},
"button_title":"button title"
}
data = {"template_object": json.dumps(post)}
uuidsData.update(data)
return requests.post(url, headers=header, data=uuidsData).status_code
반응형
'Language > Python' 카테고리의 다른 글
[Python] 카카오 REST API UUID 값 찾기 (1) | 2021.01.13 |
---|---|
[Python] 카카오 REST API 엑세스 토큰 갱신하기 (0) | 2021.01.13 |
[Python] 카카오 REST API 친구에게 List 메시지 보내기 (0) | 2021.01.13 |
[Python] 카카오 REST API 엑세스 토큰 발급 하기 (0) | 2021.01.13 |
Python으로 워드프레스 포스트 작성하기 (0) | 2020.08.13 |