친구에게 메시지 보내기 {"msg":"receiver_uuids can't be null.","code":-2}

다른 글에서 같은 에러에 대한 것을 찾아봣는데 원인을 도통 모르겠네요…

uuid는 임의로 수정해서 올립니다.

친구목록에서 가져온 uuids
[‘12345CasdfasfAIOgIuGasdfKxasdf’]

요청한 post msg
{‘receiver_uuids=’: [‘12345CasdfasfAIOgIuGasdfKxasdf’], ‘template_object=’: ‘{“object_type”: “text”, “text”: “Test Text message”, “link”: { “web_url”: “https:///developers.kakao.com”, “mobile_web_url”: “https://developers.kakao.com”},“button_title”: “바로 확인”}’}

결과
<Response [400]>
{“msg”:“receiver_uuids can’t be null.”,“code”:-2}

receiver_uuid뒤에 =가 붙어있어서 제대로 처리가 안된듯합니다.
그리고 uuid 리스트도 요청이 전달 될때는 문자열 형태로 전달해야하기 때문에 따옴표로 감싸주세요

'receiver_uuids': "[‘12345CasdfasfAIOgIuGasdfKxasdf’]"

감사합니다!

‘receiver_uuids: "[’+uuid+’]"’

uuid is variable where i store uuid

but getting this error

{“msg”:“receiver_uuids can’t be null.”,“code”:-2}