안녕하세요 tts api 사용중 어려움이 있어 글 남깁니다

파이썬으로 tts rest api 사용하려고 하는데 다운받아지는 파일이 재생이 안 되어 글 남깁니다
혹시 어떤 식으로 해결해야하는 지 알려주실 수 있나요?


import os, requests, json, wave
url = "https://kakaoi-newtone-openapi.kakao.com/v1/synthesize"
key = api_key
headers = {
	"Content-Type": "application/xml",
    "Authorization": "KakaoAK " + key,
}

data = "<speak> 안녕하세요. 반가워요. </speak>".encode('utf-8').decode('latin1')
res = requests.post(url, headers=headers, data=data)
print(type(res))
f= open('result.wav', 'wb')
f.write(res.content)
f.close()

data = “<speak> 안녕하세요. 반가워요. </speak>” 이런식으로 작성하면
UnicodeEncodeError: ‘latin-1’ codec can’t encode characters in position 8-12: Body (‘안녕하세요’) is not valid Latin-1. Use body.encode(‘utf-8’) if you want to send it encoded in UTF-8.
이런 오류가 떠서

data = "<speak> 안녕하세요. 반가워요. </speak>".encode('utf-8').decode('latin1')
이런식으로 작성하였습니다!